Skip to content

Commit 8b0d18e

Browse files
committed
Added composer scripts descriptions and misc composer config
1 parent a17b902 commit 8b0d18e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

composer.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,29 @@
1818
"overtrue/phplint": "^4.1"
1919
},
2020
"scripts": {
21+
"lint": "XDEBUG_MODE=off phplint --exclude=vendor .",
2122
"checkstyle": "XDEBUG_MODE=off ecs check --config=ecs-local.php",
2223
"fixstyle": "@checkstyle --fix",
23-
"lint": "XDEBUG_MODE=off phplint --exclude=vendor .",
2424
"checkall": [
2525
"@lint",
2626
"@checkstyle",
2727
"composer outdated --direct",
2828
"composer outdated --direct --minor-only --strict"
2929
]
3030
},
31+
"scripts-descriptions": {
32+
"lint": "Check all php files for syntax errors.",
33+
"checkstyle": "Report on code style violations (without fixing it).",
34+
"fixstyle": "Fixes code style violations.",
35+
"checkall": "Run all code checkers (lint, checkstyle, outdated, ...)."
36+
},
3137
"extra": {
3238
"branch-alias": {
3339
"dev-master": "1.0-dev"
3440
}
3541
},
42+
"minimum-stability": "dev",
43+
"prefer-stable": true,
3644
"config": {
3745
"sort-packages": true,
3846
"allow-plugins": {

0 commit comments

Comments
 (0)