Merge branch '2.0'

* 2.0:
  Minor improvements to CI config
  Fix docs to reflect extension configuration: change 'kernel.file' to 'kernel.path'
  Use right namespace for service definition
This commit is contained in:
Kamil Kokot
2019-05-17 17:19:31 +08:00
4 changed files with 22 additions and 10 deletions

View File

@@ -40,6 +40,19 @@
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"composer validate --ansi --strict",
"@analyse"
],
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar src tests --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar src tests",
"vendor/bin/phpstan analyse --ansi --no-progress -c phpstan.neon -l max src"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"