diff --git a/.github/workflows/matrix.json b/.github/workflows/matrix.json index a38b5ef5..e2a9dd99 100644 --- a/.github/workflows/matrix.json +++ b/.github/workflows/matrix.json @@ -1,6 +1,7 @@ { "include": [ { "php": "8.1" }, - { "php": "8.2" } + { "php": "8.2" }, + { "php": "8.3" } ] } diff --git a/composer.json b/composer.json index 04d7d26d..630b5ddb 100644 --- a/composer.json +++ b/composer.json @@ -107,7 +107,10 @@ "pest:fast": [ "@pest --parallel" ], - "phpcs": "@php vendor/bin/php-cs-fixer fix --dry-run --diff", + "phpcs": [ + "@putenv PHP_CS_FIXER_IGNORE_ENV=1", + "@php vendor/bin/php-cs-fixer fix --dry-run --diff" + ], "phpcs:fix": "@php vendor/bin/php-cs-fixer fix", "phpstan": "@php vendor/bin/phpstan analyze", "psalm": "@php vendor/bin/psalm",