Skip to content

Commit

Permalink
ci(SDK-4666): Add support for forthcoming PHP 8.3 release (#733)
Browse files Browse the repository at this point in the history
### Changes

This pull request adds the forthcoming PHP 8.3 runtime to the continuous
integration test matrix.

### References

N/A

### Testing

This pull request expands the existing continuous integration testing.

### Contributor Checklist

- [x] I agree to adhere to the [Auth0 General Contribution
Guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md).
- [x] I agree to uphold the [Auth0 Code of
Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md).
  • Loading branch information
evansims authored Oct 16, 2023
1 parent 3474acd commit ebc6db2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
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",
"@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

0 comments on commit ebc6db2

Please sign in to comment.