-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 2.78 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "inter-mediator/inter-mediator-composer-plugin",
"version": "1.0",
"time": "2024-07-07",
"type": "composer-plugin",
"repositories": [
{
"type": "git",
"url": "https://github.com/INTER-Mediator/INTER-Mediator-composer-plugin.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"ext-PDO": "*",
"ext-curl": "*",
"ext-xml": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-intl": "*",
"composer-plugin-api": "^1.1 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "@stable",
"composer/composer": "^2.4",
"inter-mediator/inter-mediator": "*"
},
"autoload": {
"psr-4": {
"INTERMediator\\": "src"
}
},
"extra": {
"class": "INTERMediator\\Installer\\IMInstaller"
},
"description": "The Composer plugin of INTER-Mediator for installing tasks.",
"keywords": [
"composer",
"framework"
],
"homepage": "https://inter-mediator.com",
"license": "MIT",
"authors": [
{
"name": "INTER-Mediator Directive Committee",
"homepage": "https://inter-mediator.org/"
}
],
"support": {
"community-jp": "https://www.facebook.com/groups/233378356708157/",
"community-en": "https://www.facebook.com/groups/254446237922985/",
"source": "https://github.com/INTER-Mediator/INTER-Mediator",
"manual": "https://inter-mediator.info/"
},
"scripts": {
"scripts": {
"phpstan": "vendor/bin/phpstan -c spec/phpstan.neon"
},
"test": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./spec/INTER-Mediator-UnitTest/phpunit.xml"
],
"test-legacy": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./spec/INTER-Mediator-UnitTest_Legacy/phpunit.xml"
],
"test-fms": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./spec/INTER-Mediator-UnitTest/phpunit-fms.xml --process-isolation"
],
"jest": [
"./node_modules/.bin/jest --config ./spec/jest-test-suite/jest.config.js"
],
"wdio-test": [
"cd spec/run;npm run wdio"
],
"clear": [
"rm -rf node_modules vendor"
],
"post-update-cmd": [
"./vendor/bin/npm install",
"./vendor/bin/npm update",
"rm -f __Did_you_run_composer_update.txt"
],
"post-install-cmd": [
"./vendor/bin/npm install",
"rm -f __Did_you_run_composer_update.txt"
],
"forever-list": [
"./node_modules/.bin/forever list"
],
"forever-stopall": [
"./node_modules/.bin/forever stopall"
]
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"mouf/nodejs-installer": true
}
}
}