Skip to content

Commit 5bfc5eb

Browse files
committed
Adds Laravel 12.x Support
1 parent 5a01fc0 commit 5bfc5eb

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,21 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
php: [8.4, 8.3, 8.2, 8.1]
12-
laravel: [11.*, 10.*]
11+
php: [8.1, 8.2, 8.3, 8.4]
12+
laravel: [10.*, 11.*, 12.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
exclude:
1515
- laravel: 11.*
1616
php: 8.1
17+
- laravel: 12.*
18+
php: 8.1
1719
include:
18-
- laravel: 11.*
19-
testbench: ^9.0
2020
- laravel: 10.*
2121
testbench: ^8.0
22+
- laravel: 11.*
23+
testbench: ^9.0
24+
- laravel: 12.*
25+
testbench: ^10.0
2226

2327
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2428

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
},
2525
"require-dev": {
2626
"mockery/mockery": "^1.4",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"phpunit/phpunit": "^10.5"
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^10.5|^11.5.3"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)