fix composer script commands

Cette révision appartient à :
Daniel Seifert 2022-07-21 11:03:37 +02:00
Parent d07eb1f694
révision b33b6081ad
Signé par: DanielS
ID de la clé GPG: 8A7C4C6ED1915C6F
1 fichiers modifiés avec 3 ajouts et 2 suppressions

Voir le fichier

@ -42,8 +42,9 @@
} }
}, },
"scripts": { "scripts": {
"test": "phpunit", "test": "./vendor/bin/phpunit",
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run", "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"
} }
} }