Skip to content

Commit 2f087ee

Browse files
committed
feat: add Laravel 13 support
1 parent 88371ba commit 2f087ee

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ ubuntu-latest ]
12-
php: [ 8.3, 8.2 ]
13-
laravel: [ 11.*, 10.* ]
12+
php: [ 8.4, 8.3 ]
13+
laravel: [ 13.*, 12.*, 11.* ]
1414
dependency-version: [ prefer-stable ]
1515
include:
16+
- laravel: 13.*
17+
testbench: 11.*
18+
- laravel: 12.*
19+
testbench: 10.*
1620
- laravel: 11.*
1721
testbench: 9.*
18-
- laravel: 10.*
19-
testbench: 8.*
2022

2123
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2224

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"html"
1010
],
1111
"require": {
12-
"php": "^8.2",
12+
"php": "^8.3",
1313
"ext-json": "*",
1414
"laravel/nova": "^4.25 || ^5.0"
1515
},
1616
"require-dev": {
1717
"interaction-design-foundation/coding-standard": "^0.3.0",
18-
"orchestra/testbench-core": "^8.0 || ^9.0",
18+
"orchestra/testbench-core": "^8.0 || ^9.0 || ^10.0 || ^11.0",
1919
"phpunit/phpunit": "^10.5 || ^11.0"
2020
},
2121
"repositories": [

0 commit comments

Comments
 (0)