-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
47 lines (46 loc) · 1.08 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
{
"name": "phpunit/phpcov",
"description": "CLI frontend for php-code-coverage",
"homepage": "https://github.com/sebastianbergmann/phpcov",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpcov/issues"
},
"config": {
"platform": {
"php": "8.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": ">=8.2",
"phpunit/phpunit": "^11.0",
"phpunit/php-code-coverage": "^11.0",
"phpunit/php-file-iterator": "^5.0",
"sebastian/cli-parser": "^3.0",
"sebastian/diff": "^6.0",
"sebastian/version": "^5.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"bin": [
"phpcov"
],
"extra": {
"branch-alias": {
"dev-main": "10.0-dev"
}
}
}