-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.12 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
{
"name": "df/php-coverfish",
"description": "lightweight static code analysis tool for class coverage check of PHPUnit's CodeCoverage",
"keywords": ["symfony", "silex", "phpunit", "phpcc", "php", "coverage"],
"time": "2015-08-08",
"license": "MIT",
"support": {
"email": "dunkelfrosch.net@gmail.com",
"source": "https://github.com/dunkelfrosch/phpcoverfish",
"issues": "https://github.com/dunkelfrosch/phpcoverfish/issues"
},
"authors": [
{
"name": "Patrick Paechnatz",
"email": "patrick.paechnatz@gmail.com",
"role": "lead"
}
],
"require": {
"php": "^7.0",
"symfony/console": ">=2.3",
"phpunit/php-token-stream": "~1.2",
"sebastian/finder-facade": "~1.1",
"phpunit/phpunit": "~4.7"
},
"autoload": {
"psr-4": {
"DF\\PHPCoverFish\\": "src/PHPCoverFish/",
"DF\\PHPCoverFish\\Tests\\": "tests/"
}
},
"bin": [
"bin/coverfish"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}