-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 932 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
{
"name": "beporter/coverage-ensure",
"description": "PHP CLI script that reads clover.xml coverage reports and returns non-zero when percent coverage is below specified threshold. Intended for use with automated test/build tools like Travis CI, Circle CI and Jenkins.",
"keywords": [
"code-coverage",
"ci",
"phpunit"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "B Porter",
"email": "[email protected]"
}
],
"homepage": "https://github.com/beporter/php-coverage-ensure",
"support": {
"issues": "https://github.com/beporter/php-coverage-ensure/issues",
"source": "https://github.com/beporter/php-coverage-ensure"
},
"prefer-stable": true,
"require": {
"php": ">=7.0.0"
},
"bin": [
"bin/coverage-ensure",
"bin/clover-path-from-phpunit"
]
}