-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.35 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.35 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
50
51
52
53
54
{
"name": "reyesoft/ci",
"description": "Library to fix common errors in php and keep a clean code",
"keywords": [
"reyesoft",
"ci"
],
"type": "library",
"minimum-stability": "stable",
"authors": [
{
"name": "Pablo Reyes",
"email": "pablo@reyesoft.com",
"homepage": "https://pabloreyes.com.ar/"
}
],
"require": {
"friendsofphp/php-cs-fixer": "2.16.3",
"phpmd/phpmd" : "2.8.2",
"phpstan/phpstan": "^0.12" ,
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"sebastian/phpcpd": "5.0.2",
"squizlabs/php_codesniffer": "3.5.5"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"suggest": {
"nunomaduro/larastan": "0.5.0"
},
"extra": {
"coverage": {
"file": "./tests/Tools/coverage-checker-files/clover.xml",
"thresholds": {
"global": {
"lines": 76
},
"/app/Boxer": {
"lines": 78,
"functions": 55
}
}
}
},
"config": {
"preferred-install": "dist",
"platform:": {
"php": "7.3"
},
"discard-changes": true
},
"prefer-stable": true
}