-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "noximo/easycodingstandard-fileoutput",
"description": "An error formatter for Easy Coding Standard that exports analysis result into HTML file",
"keywords": [
"Easy Coding Standard",
"Error formatter",
"File output"
],
"type": "library",
"authors": [
{
"name": "Tomas Pospisil",
"email": "pospisilt@gmail.com"
}
],
"autoload": {
"psr-4": {
"noximo\\EasyCodingStandardFileoutput\\": [
"src/",
"tests/"
]
}
},
"require": {
"php": "^7.1",
"symplify/easy-coding-standard": "^7",
"nette/utils": "^3",
"webmozart/path-util": "^2",
"thecodingmachine/safe": "^1"
},
"license": "MIT",
"require-dev": {
"phpstan/phpstan": "^0",
"noximo/dbgr": "^0",
"noximo/phpstan-fileoutput": "^0"
},
"scripts": {
"check": [
"@check-cs",
"@phpstan"
],
"ecs": "ecs check src",
"ecs-fix": "ecs check src --fix",
"phpstan": "phpstan analyse src --level max --error-format=fileoutput",
"phpstan-test": "phpstan analyse src tests --level max --error-format=fileoutput --no-progress",
"check-cs-test": "ecs check tests "
}
}