Skip to content

Commit 181107f

Browse files
authored
Merge pull request #32 from poldixd/laravel-13-support
Added laravel 13 support
2 parents 02cdd39 + d0d4c82 commit 181107f

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.2, 8.3]
13-
laravel: [10.*, 11.*, 12.*]
12+
php: [8.2, 8.3, 8.4, 8.5]
13+
laravel: [10.*, 11.*, 12.*, 13.*]
1414
stability: [prefer-lowest, prefer-stable]
15+
exclude:
16+
- php: 8.2
17+
laravel: 13.*
1518
include:
1619
- laravel: 10.*
1720
testbench: 8.*
1821
- laravel: 11.*
1922
testbench: 9.*
2023
- laravel: 12.*
2124
testbench: 10.*
25+
- laravel: 13.*
26+
testbench: 11.*
2227

2328
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2429

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
],
1616
"require": {
1717
"php": "^8.2",
18-
"illuminate/config": "^10.0|^11.0||^12.0",
19-
"illuminate/http": "^10.0|^11.0||^12.0",
20-
"illuminate/routing": "^10.0|^11.0||^12.0",
21-
"illuminate/support": "^10.0|^11.0||^12.0"
18+
"illuminate/config": "^10.0|^11.0||^12.0||^13.0",
19+
"illuminate/http": "^10.0|^11.0||^12.0||^13.0",
20+
"illuminate/routing": "^10.0|^11.0||^12.0||^13.0",
21+
"illuminate/support": "^10.0|^11.0||^12.0||^13.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^9.0|^10.5|^11.0",

0 commit comments

Comments
 (0)