Rename composer all to composer complete-check

This commit is contained in:
Gabriel Caruso 2017-12-28 18:27:16 -02:00
parent f15348069d
commit 2c46e26cfa
2 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ Just follow 3 rules:
- Tests, coding standard and PHPStan **checks must pass**
```bash
composer all
composer complete-check
```
Don you need to fix coding standards? Run:

View File

@ -57,7 +57,7 @@
}
},
"scripts": {
"all": ["@check-cs", "phpunit", "@phpstan"],
"complete-check": ["@check-cs", "phpunit", "@phpstan"],
"check-cs": "vendor/bin/ecs check bin packages src tests",
"fix-cs": "vendor/bin/ecs check bin packages src tests --fix",
"phpstan": "vendor/bin/phpstan.phar analyse packages src tests --level max --configuration phpstan.neon"