-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
37 lines (37 loc) · 1.07 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
{
"name": "creativestyle/composer-plugin-patchset",
"description": "Composer plugin that automatically applies patches from a patchset package",
"type": "composer-plugin",
"license": "OSL-3.0",
"authors": [
{
"name": "Filip Sobalski",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"php": ">=5.6.0",
"composer-plugin-api": "~1.1 | ^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "~5.7 | ~6.0 | ~7.0",
"symfony/process": "^3"
},
"autoload": {
"psr-4": {"Creativestyle\\Composer\\Patchset\\": "src"}
},
"autoload-dev": {
"psr-4": {
"Creativestyle\\Composer\\TestingSandbox\\": "tests/sandbox",
"Creativestyle\\Composer\\Patchset\\Tests\\Functional\\": "tests/functional"
},
"classmap": [
"tests/installer/ComposerPharInstaller.php"
]
},
"extra": {
"class": "Creativestyle\\Composer\\Patchset\\Plugin"
}
}