-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.02 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
{
"name" : "andersundsehr/no-ci",
"description" : "composer @no-ci addon",
"type" : "composer-plugin",
"license" : "GPL-2.0-or-later",
"autoload" : {
"psr-4" : {
"AUS\\NoCi\\" : "src/"
}
},
"authors" : [
{
"name" : "Matthias Vogel",
"email" : "m.vogel@andersundsehr.com"
}
],
"scripts" : {
"test": "@no-ci @php -v"
},
"require" : {
"composer-plugin-api" : "^2.0",
"ondram/ci-detector": "^4.1",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"composer/composer": "^2.0",
"pluswerk/grumphp-config": "^5"
},
"extra": {
"class": "AUS\\NoCi\\Plugin",
"pluswerk/grumphp-config": {
"auto-setting": true
},
"grumphp": {
"config-default-path": "vendor/pluswerk/grumphp-config/grumphp.yml"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true
}
}
}