-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "nathandentzau/composer-patches-dev",
"description": "Apply patches to packages while Composer is in dev mode",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Nathan Dentzau",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"composer-plugin-api": "^1.1",
"cweagans/composer-patches": "^1.6"
},
"require-dev": {
"composer/composer": "^1.6",
"phpunit/phpunit": "^7.0",
"satooshi/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"NathanDentzau\\ComposerPatchesDev\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NathanDentzau\\ComposerPatchesDev\\Tests\\": "tests/"
}
},
"scripts": {
"test:php": "vendor/bin/phpunit -c phpunit.xml"
},
"extra": {
"class": "NathanDentzau\\ComposerPatchesDev\\Plugin"
}
}