-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
53 lines (53 loc) · 1.71 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
{
"name": "dvdoug/behat-code-coverage",
"description": "Generate Code Coverage reports for Behat tests",
"type": "library",
"homepage": "https://behat.cc",
"keywords": ["behat", "code", "coverage", "report", "test", "tests", "code-coverage", "reports", "clover", "cobertura", "scenario", "bdd"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"composer-runtime-api": "^2.0",
"behat/behat": "^3.15",
"composer/semver": "^3.0",
"phpunit/php-code-coverage": "^10.1||^11.0",
"symfony/config": "^5.4.35||^6.3.12||^7.0.3",
"symfony/console": "^5.4.35||^6.3.12||^7.0.3",
"symfony/dependency-injection": "^5.3.35||^6.3.12||^7.0.3",
"symfony/event-dispatcher": "^5.4.35||^6.3.12||^7.0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49.0",
"phpunit/phpunit": "^10.5.27||^11.4.3",
"symfony/filesystem": "^5.4.35||^6.3.12||^7.0.3"
},
"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": {
"phpunit/php-code-coverage": "source",
"*": "dist"
},
"sort-packages": true,
"bin-compat" : "full",
"optimize-autoloader": true
}
}