Cleanup composer script

This commit is contained in:
Jeremiah VALERIE 2018-08-28 13:35:49 +02:00
parent da70134c38
commit 6a4c815b6d
No known key found for this signature in database
GPG Key ID: 668676FD50ADF244
2 changed files with 1 additions and 3 deletions

2
.gitignore vendored
View File

@ -2,5 +2,3 @@ composer.phar
composer.lock composer.lock
phpcs.xml phpcs.xml
vendor/ vendor/
bin/
phpstan.phar

View File

@ -42,6 +42,6 @@
}, },
"scripts": { "scripts": {
"lint" : "phpcs", "lint" : "phpcs",
"static-analysis": "@php bin/phpstan.phar analyse --ansi -l 1 -c phpstan.neon src" "static-analysis": "@php ./vendor/bin/phpstan.phar analyse --ansi -l 1 -c phpstan.neon src"
} }
} }