-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
82 lines (82 loc) · 2.57 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "abbadon1334/atk4-phpdebugbar",
"description": "ATK4 UI with PHPDebugBar",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "abbadon1334",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0",
"ext-pdo": "*",
"atk4/ui": "2.0.2",
"maximebf/debugbar": "1.15.1"
},
"require-dev":{
"abbadon1334/atk4-fastroute": "dev-master",
"atk4/data": "*",
"atk4/schema": "*",
"codacy/coverage": "dev-master",
"friendsofphp/php-cs-fixer": "dev-master@dev",
"monolog/monolog": "^2.0@dev",
"phpmd/phpmd": "2.8.2",
"phpmetrics/phpmetrics": "dev-master@dev",
"phpstan/phpstan": "0.12.14",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "3.5.4",
"symfony/yaml": "~2.1|~3.0|~4.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"ATK4PHPDebugBar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ATK4PHPDebugBar\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "php-cs-fixer fix src",
"stan": "phpstan analyse src",
"stan1": "phpstan analyse --level 1 src",
"stan2": "phpstan analyse --level 2 src",
"stan3": "phpstan analyse --level 3 src",
"stan4": "phpstan analyse --level 4 src",
"stan5": "phpstan analyse --level 5 src",
"stan6": "phpstan analyse --level 6 src",
"stan7": "phpstan analyse --level 7 src",
"metrics": [
"mkdir -p ./build/report",
"mv ./build/report ./build/report_$(date +\"%Y.%m.%d_%H%M%S\")",
"phpmetrics --config=./.phpmetrics.json .",
"firefox ./build/report/phpmetrics.html/index.html"
],
"metrics-clear": [
"rm -rf ./build/report_*",
"rm -rf ./build/report"
],
"unit": [
"mkdir -p ./build/coverage",
"mv ./build/coverage ./build/coverage_$(date +\"%Y.%m.%d_%H%M%S\")",
"phpunit --configuration phpunit.xml"
],
"unit-html": [
"mkdir -p ./build/coverage",
"mv ./build/coverage ./build/coverage_$(date +\"%Y.%m.%d_%H%M%S\")",
"phpunit --configuration phpunit.xml --coverage-html ./build/coverage",
"firefox ./build/coverage/index.html"
],
"unit-clear": [
"rm -rf ./build/coverage_*",
"rm -rf ./build/coverage"
]
}
}