Skip to content

Commit aa33dec

Browse files
authored
Merge pull request #45 from gabrielrbarbosa/patch-1
Update PHP and PHP Unit version requirements
2 parents 4e6d6ce + e6a5e76 commit aa33dec

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
19-
php: [8.1, 8.2, 8.3, 8.4]
19+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
2020
laravel: ['9.*', '10.*', '11.*', '12.*']
2121
dependency-version: [prefer-stable]
2222
include:
@@ -33,8 +33,12 @@ jobs:
3333
php: 8.3
3434
- laravel: 10.*
3535
php: 8.4
36+
- laravel: 10.*
37+
php: 8.5
3638
- laravel: 11.*
3739
php: 8.1
40+
- laravel: 11.*
41+
php: 8.5
3842
- laravel: 12.*
3943
php: 8.1
4044

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.5.0 - 2025-12-14
59+
60+
- Add PHP 8.5 support
61+
5862
### 2.4.1 - 2025-07-25
5963

6064
- Fix PHP 8.4 implicitly nullable parameter declarations deprecated warning

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0",
23+
"php": "~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0 | ~8.5.0",
2424
"ext-json": "*",
2525
"guzzlehttp/guzzle": "^7.2",
2626
"illuminate/http": "^9.0 || ^10.0 || ^11.0 || ^12.0",
@@ -29,7 +29,7 @@
2929
},
3030
"require-dev": {
3131
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0",
32-
"phpunit/phpunit": "^9.5.10 || ^10.0 || ^11.0",
32+
"phpunit/phpunit": "^9.5.10 || ^10.0 || ^11.0 || ^12.0",
3333
"timacdonald/log-fake": "^2.0"
3434
},
3535
"autoload": {

0 commit comments

Comments
 (0)