forked from leanphp/behat-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.8 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.8 KB
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
{
"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": "~4.0||~5.0",
"behat/behat": "~3.0",
"guzzlehttp/guzzle": "~4.0",
"symfony/config": "~2.3||~3.0",
"symfony/dependency-injection": "~2.2||~3.0",
"symfony/expression-language": "~2.2||~3.0",
"symfony/http-kernel": "~2.3||~3.0",
"symfony/http-foundation": "~2.3||~3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mikey179/vfsStream": "1.6.*"
},
"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.1.x-dev"
}
}
}