Skip to content

Commit

Permalink
Allow PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Jun 21, 2024
1 parent d194ad2 commit 2ffd8d8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.1"
php-version: "8.3"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.1"
php-version: "8.3"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -100,8 +100,8 @@ jobs:
strategy:
matrix:
operating-system: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
php-version: [ "7.4", "8.0", "8.1" ]
operating-system: [ "ubuntu-latest" ]
php-version: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
composer-flags: [ "" ]
experimental: [ false ]
include:
Expand All @@ -110,8 +110,16 @@ jobs:
composer-flags: "--prefer-lowest --prefer-stable"
experimental: false
- operating-system: "ubuntu-latest"
php-version: "8.2"
php-version: "8.4"
composer-flags: "--ignore-platform-req=php+"
experimental: true
- operating-system: "macos-latest"
php-version: "8.3"
composer-flags: ""
experimental: false
- operating-system: "windows-latest"
php-version: "8.3"
composer-flags: ""
experimental: false

steps:
Expand Down Expand Up @@ -162,7 +170,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.1"
php-version: "8.3"

steps:
- name: "Coveralls"
Expand All @@ -182,7 +190,7 @@ jobs:
matrix:
include:
- operating-system: "ubuntu-latest"
php-version: "8.1"
php-version: "8.3"

steps:
- name: "Checkout"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added

- Allow PHP 8.3
- Ensure metadata are defined in scope of `MappedObject`
- Conflicting field name exception reports error in source property instead of context property
- Conflicting field name exception reports in which class did the conflict occur
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
],
"require": {
"php": ">=7.4.0 <8.3.0",
"php": "7.4 - 8.3",
"ext-mbstring": "*",
"benmorel/weakmap-polyfill": "^0.3.0|^0.4.0",
"nette/robot-loader": "^3.4.0|^4.0.0",
Expand Down

0 comments on commit 2ffd8d8

Please sign in to comment.