-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 761 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 761 Bytes
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
{
"name": "ockcyp/covers-validator",
"description": "Validates @covers tags in PHPUnit tests",
"license": "MIT",
"keywords": ["phpunit", "coverage", "testing"],
"authors": [
{
"name": "Oliver Radwell",
"email": "oliver.radwell@gmail.com"
}
],
"autoload": {
"psr-4": {"OckCyp\\CoversValidator\\": "src/"}
},
"autoload-dev": {
"psr-4": {"OckCyp\\CoversValidator\\Tests\\": "tests/"}
},
"require": {
"php": "^7.1 || ^8.0",
"phpunit/phpunit": ">=7.0,<11.0",
"symfony/console": ">=2.7,<7.0"
},
"bin": [
"covers-validator"
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}