Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 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
1 change: 0 additions & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "7.4"
- "8.0"

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

@spawnia I don't know what version do you need to support but I'd support only currently supported ones - 8.2+
https://www.php.net/supported-versions.php

- "8.1"
- "8.2"
Comment on lines 16 to 20
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ You can find and compare releases at the [GitHub release page](https://github.co

### Changed

- PHP version required: 7.4+
- PHP version required: 8.0+
Comment on lines 643 to +647
- Propagate error message and stack trace for why leaf value serialization failed
- Do not throw client safe `Error` when failing to serialize an Enum type
- Use native PHP types for properties of `Type` and its subclasses
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"homepage": "https://github.com/webonyx/graphql-php",
"require": {
"php": "^7.4 || ^8",
"php": "^8",
"ext-json": "*",
"ext-mbstring": "*"
},
Expand Down
Loading