Skip to content

Commit 6f95e1c

Browse files
freekmurzeclaude
andcommitted
Add Laravel 13 and PHP 8.5 support
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9241232 commit 6f95e1c

2 files changed

Lines changed: 18 additions & 6 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [8.4, 8.3, 8.2, 8.1, 8.0]
14-
laravel: ['9.*', '10.*', '11.*', '12.*']
13+
php: [8.5, 8.4, 8.3, 8.2, 8.1, 8.0]
14+
laravel: ['9.*', '10.*', '11.*', '12.*', '13.*']
1515
dependency-version: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 10.*
@@ -22,6 +22,8 @@ jobs:
2222
testbench: 9.*
2323
- laravel: 12.*
2424
testbench: 10.*
25+
- laravel: 13.*
26+
testbench: 11.*
2527
exclude:
2628
- laravel: 10.*
2729
php: 8.0
@@ -35,6 +37,16 @@ jobs:
3537
php: 8.1
3638
- laravel: 12.*
3739
php: 8.0
40+
- laravel: 13.*
41+
php: 8.0
42+
- laravel: 13.*
43+
php: 8.1
44+
- laravel: 13.*
45+
php: 8.2
46+
- laravel: 9.*
47+
php: 8.5
48+
- laravel: 10.*
49+
php: 8.5
3850

3951
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4052

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
],
2323
"require": {
2424
"php": "^8.0",
25-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
26-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
25+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
26+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
2727
"league/fractal": "^0.20.1|^0.20",
2828
"nesbot/carbon": "^2.63|^3.0",
2929
"spatie/fractalistic": "^2.9.5|^2.9",
3030
"spatie/laravel-package-tools": "^1.11"
3131
},
3232
"require-dev": {
3333
"ext-json": "*",
34-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
35-
"pestphp/pest": "^1.22|^2.34|^3.0"
34+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0",
35+
"pestphp/pest": "^1.22|^2.34|^3.0|^4.0"
3636
},
3737
"autoload": {
3838
"psr-4": {

0 commit comments

Comments
 (0)