File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 18
18
"overtrue/phplint" : " ^4.1"
19
19
},
20
20
"scripts" : {
21
+ "lint" : " XDEBUG_MODE=off phplint --exclude=vendor ." ,
21
22
"checkstyle" : " XDEBUG_MODE=off ecs check --config=ecs-local.php" ,
22
23
"fixstyle" : " @checkstyle --fix" ,
23
- "lint" : " XDEBUG_MODE=off phplint --exclude=vendor ." ,
24
24
"checkall" : [
25
25
" @lint" ,
26
26
" @checkstyle" ,
27
27
" composer outdated --direct" ,
28
28
" composer outdated --direct --minor-only --strict"
29
29
]
30
30
},
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
+ },
31
37
"extra" : {
32
38
"branch-alias" : {
33
39
"dev-master" : " 1.0-dev"
34
40
}
35
41
},
42
+ "minimum-stability" : " dev" ,
43
+ "prefer-stable" : true ,
36
44
"config" : {
37
45
"sort-packages" : true ,
38
46
"allow-plugins" : {
You can’t perform that action at this time.
0 commit comments