diff --git a/.editorconfig b/.editorconfig index 982787695..5bd1b74fe 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,7 +10,7 @@ indent_style = space indent_size = 4 insert_final_newline = true -[composer.json] +[{composer.json,Makefile}] indent_style = tab [{.codeclimate.yml,.travis.yml}] diff --git a/.idea/php.xml b/.idea/php.xml index 78c49857c..76ba27034 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -8,126 +8,126 @@ - - - - - - - - - - - + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - + + + + + + + + + diff --git a/Makefile b/Makefile index c0e25292c..53e980d2b 100644 --- a/Makefile +++ b/Makefile @@ -183,7 +183,7 @@ phpinsights: ## Runs PHP Insights psalm: ## Runs Psalm static analysis tool @echo "\033[32mRunning Psalm - A static analysis tool for PHP\033[39m" @php ./vendor/bin/psalm --version - @php ./vendor/bin/psalm --no-cache --shepherd --stats --report=./build/psalm.json + @php ./vendor/bin/psalm --no-cache --shepherd --report=./build/psalm.json ###< psalm ### ###> phpstan ### diff --git a/composer.json b/composer.json index 3231c778c..8a84d1fba 100644 --- a/composer.json +++ b/composer.json @@ -100,12 +100,12 @@ "cache:warmup": "symfony-cmd" }, "post-install-cmd": [ - "@composer bin all install --ansi", + "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all install; fi", "@auto-scripts", "@composer dump-autoload" ], "post-update-cmd": [ - "@composer bin all update --ansi", + "if test -d vendor/bamarni/composer-bin-plugin; then composer bin all update; fi", "@auto-scripts", "@composer dump-autoload" ]