-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.39 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
{
"name": "cweagans/composer-configurable-plugin",
"description": "Provides a lightweight configuration system for Composer plugins.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cameron Eagans",
"email": "me@cweagans.net"
}
],
"require": {
"php": ">=8.0.0"
},
"require-dev": {
"composer/composer": "~2.0",
"codeception/codeception": "~4.0",
"php-coveralls/php-coveralls": "~2.0",
"phpro/grumphp": "^1.8.0",
"php-parallel-lint/php-parallel-lint": "^1.0.0",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"codeception/module-asserts": "^2.0"
},
"autoload": {
"psr-4": {
"cweagans\\Composer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"cweagans\\Composer\\Tests\\Acceptance\\": "tests/acceptance/",
"cweagans\\Composer\\Tests\\Unit\\": "tests/unit/",
"cweagans\\Composer\\Tests\\": "tests/_support/"
}
},
"scripts": {
"static": "grumphp run",
"unit": "codecept run unit",
"coverage": "codecept run --coverage-xml",
"coveralls": "php-coveralls",
"test": [
"@static",
"@unit"
]
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}