Skip to content

Commit 5511e8c

Browse files
committed
Fix realpath
1 parent f09a713 commit 5511e8c

File tree

3 files changed

+680
-420
lines changed

3 files changed

+680
-420
lines changed

composer.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,24 @@
2323
},
2424
"require": {
2525
"php": "^7.1",
26-
"phpstan/phpstan": "^0.10"
26+
"phpstan/phpstan": "^0.10",
27+
"nette/utils": "2.5.*",
28+
"webmozart/path-util": "^2.3",
29+
"thecodingmachine/safe": "^0.1.9"
2730
},
2831
"license": "MIT",
2932
"require-dev": {
30-
"symplify/easy-coding-standard": "^5.1"
33+
"symplify/easy-coding-standard": "^5.3"
3134
},
3235
"scripts": {
3336
"check": [
3437
"@check-cs",
3538
"@phpstan"
3639
],
37-
"check-cs": "ecs check src",
38-
"fix-cs": "ecs check src --fix",
40+
"ecs": "ecs check src",
41+
"ecs-fix": "ecs check src --fix",
3942
"phpstan": "phpstan analyse src --level max --error-format=fileoutput",
40-
"phpstan-test": "phpstan analyse src tests --level max --error-format=fileoutput --no-progress"
43+
"phpstan-test": "phpstan analyse src tests --level max --error-format=fileoutput --no-progress",
44+
"check-cs-test": "ecs check tests "
4145
}
4246
}

0 commit comments

Comments
 (0)