Fix composer check on Windows

This commit is contained in:
m7913d
2024-11-10 13:23:49 +01:00
parent 26e59cdfc2
commit 1ec119a2bc
+3 -3
View File
@@ -45,12 +45,12 @@
],
"scripts": {
"check": [
"./bin/check-phpdoc-types",
"php ./bin/check-phpdoc-types",
"phpcs samples/ src/ tests/ --report=checkstyle",
"phpcs samples/ src/ tests/ --standard=PHPCompatibility --runtime-set testVersion 8.0- --exclude=PHPCompatibility.Variables.ForbiddenThisUseContexts -n",
"php-cs-fixer fix --ansi --dry-run --diff",
"phpunit --color=always",
"phpstan analyse --ansi --memory-limit=2048M"
"phpstan analyse --ansi --memory-limit=2048M",
"phpunit --color=always"
],
"style": [
"phpcs samples/ src/ tests/ --report=checkstyle",