-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.09 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "quillstack/test-coverage",
"description": "A library to create test coverage reports in PHP.",
"type": "library",
"license": "MIT",
"keywords": [
"quillstack",
"php",
"php8",
"tests",
"coverage"
],
"minimum-stability": "dev",
"homepage": "https://quillstack.org/packages/test-coverage",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": "^8.1"
},
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"quillstack/unit-tests": "^0.9"
},
"scripts": {
"test": "unit-tests",
"test:coverage": "phpdbg -qrr vendor/bin/unit-tests",
"stan": "phpstan analyse"
},
"autoload-dev": {
"psr-4": {
"Quillstack\\TestCoverage\\Tests\\": "tests/"
}
},
"prefer-stable": true
}