Skip to content

Commit 115faeb

Browse files
authored
Add Laravel 13 support (#152)
1 parent 2719115 commit 115faeb

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,18 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
php: [8.5, 8.4, 8.3, 8.2]
29-
laravel: ['11.*', '12.*']
29+
laravel: ['11.*', '12.*', '13.*']
3030
dependency-version: [prefer-stable]
3131
include:
3232
- laravel: 11.*
3333
testbench: 9.*
3434
- laravel: 12.*
3535
testbench: 10.*
36+
- laravel: 13.*
37+
testbench: 11.*
38+
exclude:
39+
- laravel: 13.*
40+
php: 8.2
3641

3742
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
3843

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
"license": "MIT",
2222
"require": {
2323
"php": "^8.2",
24-
"illuminate/auth": "^11.0|^12.0",
25-
"illuminate/container": "^11.0|^12.0",
26-
"illuminate/contracts": "^11.0|^12.0",
27-
"illuminate/database": "^11.0|^12.0",
24+
"illuminate/auth": "^11.0|^12.0|^13.0",
25+
"illuminate/container": "^11.0|^12.0|^13.0",
26+
"illuminate/contracts": "^11.0|^12.0|^13.0",
27+
"illuminate/database": "^11.0|^12.0|^13.0",
2828
"laravel/serializable-closure": "^1.0|^2.0"
2929
},
3030
"require-dev": {
31-
"orchestra/testbench": "^9.0|^10.0",
31+
"orchestra/testbench": "^9.0|^10.0|^11.0",
3232
"phpunit/phpunit": "^10.5|^11.5",
3333
"laravel/pint": "^1.27"
3434
},

0 commit comments

Comments
 (0)