-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.06 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "nebulosar/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"],
"homepage": "https://github.com/Nebulosar/CodeCeptCodeCov",
"authors": [
{
"name": "Harm Zeinstra",
"email": "harmzeinstra@hotmail.com",
"homepage": "https://mhzeinstra.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0",
"codeception/codeception": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"dg/bypass-finals": "*"
},
"autoload": {
"psr-0": { "Nebulosar\\Codeception\\CoverageChecker": "src/" }
},
"autoload-dev": {
"psr-4": {
"Tests\\Nebulosar\\": "tests/"
}
},
"scripts": {
"post-update-cmd": [
"composer dump-autoload -o"
]
}
}