1
|
{
|
2
|
"name": "phpunit/php-code-coverage",
|
3
|
"description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
|
4
|
"type": "library",
|
5
|
"keywords": [
|
6
|
"coverage",
|
7
|
"testing",
|
8
|
"xunit"
|
9
|
],
|
10
|
"homepage": "https://github.com/sebastianbergmann/php-code-coverage",
|
11
|
"license": "BSD-3-Clause",
|
12
|
"authors": [
|
13
|
{
|
14
|
"name": "Sebastian Bergmann",
|
15
|
"email": "sb@sebastian-bergmann.de",
|
16
|
"role": "lead"
|
17
|
}
|
18
|
],
|
19
|
"support": {
|
20
|
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
21
|
"irc": "irc://irc.freenode.net/phpunit"
|
22
|
},
|
23
|
"require": {
|
24
|
"php": ">=5.3.3",
|
25
|
"phpunit/php-file-iterator": "~1.3",
|
26
|
"phpunit/php-token-stream": "~1.3",
|
27
|
"phpunit/php-text-template": "~1.2",
|
28
|
"sebastian/environment": "^1.3.2",
|
29
|
"sebastian/version": "~1.0"
|
30
|
},
|
31
|
"require-dev": {
|
32
|
"phpunit/phpunit": "~4",
|
33
|
"ext-xdebug": ">=2.1.4"
|
34
|
},
|
35
|
"suggest": {
|
36
|
"ext-dom": "*",
|
37
|
"ext-xdebug": ">=2.2.1",
|
38
|
"ext-xmlwriter": "*"
|
39
|
},
|
40
|
"autoload": {
|
41
|
"classmap": [
|
42
|
"src/"
|
43
|
]
|
44
|
},
|
45
|
"extra": {
|
46
|
"branch-alias": {
|
47
|
"dev-master": "2.2.x-dev"
|
48
|
}
|
49
|
}
|
50
|
}
|