Skip to content

Commit fa1c422

Browse files
committed
Add Laravel 13 support
1 parent 6dc139d commit fa1c422

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

.github/workflows/tests.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest]
15-
php: [8.0, 8.1, 8.2, 8.3, 8.4]
16-
laravel: ['9.*', '10.*', '11.*', '12.*']
15+
php: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
16+
laravel: ['9.*', '10.*', '11.*', '12.*', '13.*']
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- laravel: 9.*
@@ -22,6 +22,8 @@ jobs:
2222
php: 8.3
2323
- laravel: 9.*
2424
php: 8.4
25+
- laravel: 9.*
26+
php: 8.5
2527
- laravel: 10.*
2628
php: 8.0
2729
- laravel: 11.*
@@ -32,6 +34,12 @@ jobs:
3234
php: 8.0
3335
- laravel: 12.*
3436
php: 8.1
37+
- laravel: 13.*
38+
php: 8.0
39+
- laravel: 13.*
40+
php: 8.1
41+
- laravel: 13.*
42+
php: 8.2
3543
include:
3644
- laravel: 9.*
3745
testbench: 7.*
@@ -41,6 +49,8 @@ jobs:
4149
testbench: 9.*
4250
- laravel: 12.*
4351
testbench: 10.*
52+
- laravel: 13.*
53+
testbench: 11.*
4454

4555
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
4656

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
3636
},
3737
"require": {
3838
"php": "^8.0",
39-
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
40-
"illuminate/events": "^9.0|^10.0|^11.0|^12.0",
41-
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
39+
"illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0",
40+
"illuminate/events": "^9.0|^10.0|^11.0|^12.0|^13.0",
41+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0"
4242
},
4343
"require-dev": {
4444
"mockery/mockery": "^1.0",
45-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
46-
"phpunit/phpunit": "^9.6|^10.5|^11.5.3"
45+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0",
46+
"phpunit/phpunit": "^9.6|^10.5|^11.5.3|^12.5.12"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)