fix composer script commands

This commit is contained in:
Daniel Seifert 2022-07-21 11:03:37 +02:00
parent d07eb1f694
commit b33b6081ad
Signed by: DanielS
GPG Key ID: 8A7C4C6ED1915C6F
1 changed files with 3 additions and 2 deletions

View File

@ -42,8 +42,9 @@
}
},
"scripts": {
"test": "phpunit",
"test": "./vendor/bin/phpunit",
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose"
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose",
"check-code": "./vendor/bin/phpstan -c phpstan.neon --no-progress --ansi"
}
}