Skip to content

Commit 06c41f8

Browse files
authored
Adds Laravel 12.x Support (#11)
1 parent c9a8328 commit 06c41f8

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run-tests.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: ['8.4', '8.3', '8.2']
13-
laravel: [^10.0, ^11.0]
12+
php: [8.2, 8.3, 8.4]
13+
laravel: [10.*, 11.*, 12.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
15-
exclude:
16-
- php: 8.1
17-
laravel: ^11.0
15+
include:
16+
- laravel: 10.*
17+
testbench: ^8.0
18+
- laravel: 11.*
19+
testbench: ^9.0
20+
- laravel: 12.*
21+
testbench: ^10.0
1822

1923
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2024

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
],
1919
"require": {
2020
"php": "^8.2",
21-
"illuminate/database": "^10.0|^11.0",
22-
"illuminate/support": "^10.0|^11.0"
21+
"illuminate/database": "^10.0|^11.0|^12.0",
22+
"illuminate/support": "^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^11.0",

0 commit comments

Comments
 (0)