forked from Nebulosar/CodeceptionCoverageChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 942 Bytes
/
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
{
"name": "s0lus/codeception-coverage-checker",
"description": "Extension for codeception. Can be used to fail tests if they are under the coverage threshold",
"type": "library",
"license": "MIT",
"keywords": [
"codeception",
"code coverage",
"coverage",
"extension",
"code checker",
"check"
],
"authors": [
{
"name": "Harm Zeinstra",
"email": "[email protected]",
"homepage": "https://mhzeinstra.com"
}
],
"require": {
"php": ">=8.3",
"codeception/codeception": "^5"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"dg/bypass-finals": "*"
},
"autoload": {
"psr-4": {
"CoverageChecker\\": "src/",
"Codeception\\Extension\\": "src/Extension"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Nebulosar\\": "tests/"
}
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload -o"
]
}
}