Skip to content

Commit

Permalink
Fix realpath
Browse files Browse the repository at this point in the history
  • Loading branch information
noximo committed Jan 13, 2019
1 parent f09a713 commit 5511e8c
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 420 deletions.
14 changes: 9 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,24 @@
},
"require": {
"php": "^7.1",
"phpstan/phpstan": "^0.10"
"phpstan/phpstan": "^0.10",
"nette/utils": "2.5.*",
"webmozart/path-util": "^2.3",
"thecodingmachine/safe": "^0.1.9"
},
"license": "MIT",
"require-dev": {
"symplify/easy-coding-standard": "^5.1"
"symplify/easy-coding-standard": "^5.3"
},
"scripts": {
"check": [
"@check-cs",
"@phpstan"
],
"check-cs": "ecs check src",
"fix-cs": "ecs check src --fix",
"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"
"phpstan-test": "phpstan analyse src tests --level max --error-format=fileoutput --no-progress",
"check-cs-test": "ecs check tests "
}
}
Loading

0 comments on commit 5511e8c

Please sign in to comment.