Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(SDK-4666): Add support for forthcoming PHP 8.3 release #733

Merged
merged 4 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/matrix.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"include": [
{ "php": "8.1" },
{ "php": "8.2" }
{ "php": "8.2" },
{ "php": "8.3" }
]
}
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Temporary workaround for PHPCS to run in the pre-release runtime environment successfully.

"@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",
Expand Down