-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.59 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
{
"name": "kalessil/production-dependencies-guard",
"type": "composer-plugin",
"description": "Prevents adding of development packages into require-section (should be require-dev).",
"homepage": "https://github.com/kalessil/production-dependencies-guard",
"license": "MIT",
"authors": [{
"name": "Vladimir Reznichenko",
"email": "[email protected]",
"role": "maintainer"
}],
"require": {
"php": "^7.0|^8.0",
"ext-json": "*",
"composer-plugin-api": "^1.0|^2.0"
},
"require-dev": {
"ext-xdebug": "*",
"composer/composer": "^1.0|^2.0",
"phpunit/phpunit": "^6.5",
"infection/infection": "^0.9",
"rregeer/phpunit-coverage-check": "^0.1"
},
"autoload": {
"psr-4": {
"Kalessil\\Composer\\Plugins\\ProductionDependenciesGuard\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Kalessil\\Composer\\Plugins\\ProductionDependenciesGuard\\": ["src/", "tests/"]
}
},
"extra": {
"class": "Kalessil\\Composer\\Plugins\\ProductionDependenciesGuard\\Guard"
},
"scripts": {
"test": [
"./vendor/bin/phpunit --coverage-html ./build --coverage-clover ./build/phpunit.clover.xml",
"./vendor/bin/coverage-check ./build/phpunit.clover.xml 100",
"./vendor/bin/infection --only-covered --min-msi=100 --quiet"
]
}
}