Skip to content

Commit 0a12cdd

Browse files
authored
Merge pull request #13 from onlime/php85-support
Support PHP 8.5
2 parents 5798bb6 + f4a49d2 commit 0a12cdd

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
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: ['10.*', '11.*', '12.*']
2121
dependency-version: [prefer-stable]
2222
include:
@@ -29,8 +29,12 @@ jobs:
2929
exclude:
3030
- laravel: 10.*
3131
php: 8.4
32+
- laravel: 10.*
33+
php: 8.5
3234
- laravel: 11.*
3335
php: 8.1
36+
- laravel: 11.*
37+
php: 8.5
3438
- laravel: 12.*
3539
php: 8.1
3640

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public/hot
1515
public_html/storage
1616
public_html/hot
1717

18+
composer.lock
1819
storage/*.key
1920
.env
2021
Homestead.yaml

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes will be documented in this file
44

5+
## 1.5.0 - 2025-11-28
6+
7+
- Add PHP 8.5 support
8+
59
## 1.4.0 - 2025-02-17
610

711
- Add Laravel 12 support

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
],
2323
"require": {
24-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
24+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
2525
"illuminate/contracts": "^10.0 || ^11.0 || ^12.0"
2626
},
2727
"require-dev": {

0 commit comments

Comments
 (0)