forked from cweagans/composer-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.74 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
{
"name": "cweagans/composer-patches",
"description": "Provides a way to patch Composer packages.",
"license": "BSD-3-Clause",
"type": "composer-plugin",
"extra": {
"class": "cweagans\\Composer\\Plugin\\Patches",
"_": "The following two lines ensure that composer-patches is loaded as early as possible.",
"plugin-modifies-downloads": true,
"plugin-modifies-install-path": true
},
"authors": [
{
"name": "Cameron Eagans",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"cweagans/composer-configurable-plugin": "^2.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-cli": "^2.0",
"codeception/module-filesystem": "^2.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/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
},
"platform": {
"php": "8.0"
}
},
"scripts": {
"static": "grumphp run",
"unit": "codecept run unit",
"acceptance": "codecept run acceptance",
"coverage": "codecept run --coverage-xml",
"coveralls": "php-coveralls",
"test": [
"@static",
"@unit",
"@acceptance"
]
}
}