-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
51 lines (51 loc) · 1.53 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
45
46
47
48
49
50
51
{
"name": "leanphp/phpspec-code-coverage",
"description": "Generate Code Coverage reports for PhpSpec tests",
"type": "library",
"keywords": [
"phpspec", "code", "coverage", "generate", "generation", "build",
"report", "test", "tests", "code-coverage", "reports", "clover", "spec"
],
"homepage": "https://github.com/leanphp/phpspec-code-coverage",
"license": "MIT",
"authors": [
{
"name": "ek9",
"email": "dev@ek9.co",
"homepage": "https://ek9.co"
},
{
"name": "Henrik Bjornskov"
}
],
"support": {
"issues": "https://github.com/leanphp/phpspec-code-coverage/issues",
"source": "https://github.com/leanphp/phpspec-code-coverage",
"docs": "https://github.com/leanphp/phpspec-code-coverage#phpspec-code-coverage"
},
"require": {
"php": "^7.1",
"phpspec/phpspec": "^4.2",
"phpunit/php-code-coverage": "^5.0||^6.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.1",
"squizlabs/php_codesniffer": "^3.2"
},
"suggest": {
"ext-xdebug": "Install Xdebug to generate phpspec code coverage if you are not using phpdbg"
},
"minimum-stability": "stable",
"autoload" : {
"psr-4" : { "LeanPHP\\PhpSpec\\CodeCoverage\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev",
"dev-v3": "3.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}