Skip to content

Commit 0abc53d

Browse files
authored
Merge pull request #29 from okaufmann/php8.3-support
Add support for PHP 8.3
2 parents 4801304 + 2c3ead5 commit 0abc53d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.2, 8.1]
12+
php: [8.3, 8.2, 8.1]
1313
laravel: [10.*, 9.*]
1414
stability: [prefer-stable]
1515
include:

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ The following changes are required when updating:
5555

5656
## Changes
5757

58+
### 2.1.0
59+
60+
- Add PHP 8.2 support
61+
5862
### 2.0.0
5963

6064
- Minimum PHP requirement 8.1

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "~8.2.0 | ~8.1.0",
23+
"php": "~8.3.0 | ~8.2.0 | ~8.1.0",
2424
"ext-json": "*",
2525
"guzzlehttp/guzzle": "^7.2",
2626
"illuminate/http": "^9.0 || ^10.0",

0 commit comments

Comments
 (0)