forked from dvdoug/behat-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.81 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
62
63
{
"name": "dvdoug/behat-code-coverage",
"description": "Generate Code Coverage reports for Behat tests",
"type": "library",
"homepage": "https://github.com/dvdoug/behat-code-coverage",
"keywords": [
"behat", "code", "coverage", "generate", "generation", "build",
"report", "test", "tests", "code-coverage", "reports", "clover",
"scenario", "bdd"
],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
},
{
"name": "ek9",
"email": "dev@ek9.co",
"homepage": "https://ek9.co"
},
{
"name": "Anthon Pang",
"email": "apang@softwaredevelopment.ca"
}
],
"require": {
"php": "^7.3 || ^8.0",
"behat/behat": "^3.5",
"phpunit/php-code-coverage": "^9.2",
"symfony/console": "^4.4||^5.0",
"symfony/config": "^4.4||^5.0",
"symfony/dependency-injection": "^4.4||^5.0",
"symfony/event-dispatcher": "^4.4||^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17.0",
"phpunit/phpunit": "^9.5.0",
"symfony/filesystem": "^4.4||^5.0"
},
"suggest": {
"ext-xdebug": "Xdebug allows you to collect line, branch and path coverage",
"ext-pcov": "PCOV allows you to collect line coverage only, but is faster than Xdebug"
},
"autoload": {
"psr-4": {
"DVDoug\\Behat\\CodeCoverage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DVDoug\\Behat\\CodeCoverage\\Test\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-compat" : "full",
"optimize-autoloader": true
}
}