-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
61 lines (61 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
{
"name": "leanphp/behat-code-coverage",
"description": "Generate Code Coverage reports for Behat tests",
"type": "library",
"keywords": [
"behat", "code", "coverage", "generate", "generation", "build",
"report", "test", "tests", "code-coverage", "reports", "clover",
"scenario", "bdd"
],
"license": "BSD-2-Clause",
"authors": [
{
"name": "ek9",
"email": "dev@ek9.co",
"homepage": "https://ek9.co"
},
{
"name": "Anthon Pang",
"email": "apang@softwaredevelopment.ca"
}
],
"support": {
"issues": "https://github.com/leanphp/behat-code-coverage/issues",
"source": "https://github.com/leanphp/behat-code-coverage",
"docs": "https://github.com/leanphp/behat-code-coverage#behat-code-coverage"
},
"require": {
"php": ">=5.6",
"phpunit/php-code-coverage": "^6.0",
"behat/behat": "^3.0",
"guzzlehttp/guzzle": "^6.0",
"symfony/config": "^2.3||^3.0||^4.0",
"symfony/dependency-injection": "^2.2||^3.0||^4.0",
"symfony/expression-language": "^2.2||^3.0||^4.0",
"symfony/http-kernel": "^2.3||^3.0||^4.0",
"symfony/http-foundation": "^2.3||^3.0||^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mikey179/vfsStream": "1.6.*",
"squizlabs/php_codesniffer": "^3.2",
"escapestudios/symfony2-coding-standard": "^3.1"
},
"suggest": {
"ext-xdebug": "Xdebug extension is required to collect coverage via Xdebug driver and run tests",
"ext-phpdbg": "PHPDBG extension allows you to collect coverage faster than Xdebug (PHP 7.0+)"
},
"autoload": {
"psr-4": { "LeanPHP\\Behat\\CodeCoverage\\": "src/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev",
"dev-develop": "4.x-dev",
"dev-v3.1": "3.1.x-dev"
}
}
}