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 b113984 commit e458023
Show file tree
Hide file tree
Showing 3 changed files with 20 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased](https://github.com/orisai/utils/compare/1.0.1...v1.x)

### Changed

- Allow PHP 8.3

## [1.0.1](https://github.com/orisai/utils/compare/1.0.0...1.0.1) - 2022-12-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.4.0 <8.3.0",
"php": "7.4 - 8.3",
"ext-json": "*",
"composer-runtime-api": "^2.0.0",
"orisai/exceptions": "^1.0.0"
Expand Down

0 comments on commit e458023

Please sign in to comment.