Deprecated ci composer command, since it does the same as check, but slower

This commit is contained in:
Alejandro Celaya 2018-11-03 11:40:57 +01:00
parent 3eddacdff8
commit 358b2b661e
2 changed files with 5 additions and 7 deletions

View File

@ -26,7 +26,7 @@ install:
script:
- mkdir build
- composer ci
- composer check
after_success:
- rm -f build/clover.xml

View File

@ -88,17 +88,15 @@
},
"scripts": {
"check": [
"@cs",
"@stan",
"@test",
"@infect"
],
"ci": [
"@cs",
"@stan",
"@test:ci",
"@infect:ci"
],
"ci": [
"echo \"This command is DEPRECATED. Use check instead\"",
"@check"
],
"cs": "phpcs",
"cs:fix": "phpcbf",