fix composer script commands

This commit is contained in:
Daniel Seifert 2022-07-21 11:03:37 +02:00
bovenliggende d07eb1f694
commit b33b6081ad
Getekend door: DanielS
GPG sleutel-ID: 8A7C4C6ED1915C6F
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen

Bestand weergeven

@ -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"
}
}