Skip to content

Commit 95e7e5e

Browse files
committed
laravel 12 support
1 parent 58e04bd commit 95e7e5e

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

.github/workflows/run-tests.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.3, 8.2, 8.1, 8.0]
17-
laravel: [11.*, 10.*, 9.*]
16+
php: [8.3, 8.2, 8.1]
17+
laravel: ['9.*', '10.*', '11.*', '12.*']
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 11.*
@@ -23,17 +23,13 @@ jobs:
2323
testbench: 8.*
2424
- laravel: 9.*
2525
testbench: 7.*
26+
- laravel: 12.*
27+
testbench: 10.*
2628
exclude:
27-
- laravel: 11.*
29+
- php: 8.1
30+
laravel: 11.*
31+
- laravel: 12.*
2832
php: 8.1
29-
- laravel: 11.*
30-
php: 8.0
31-
- laravel: 10.*
32-
php: 8.0
33-
- laravel: 10.*
34-
php: 7.4
35-
- laravel: 9.*
36-
php: 7.4
3733

3834
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3935

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/database": "^9.0 || ^10.0 || ^11.0",
21-
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
22-
"illuminate/testing": "^9.0 || ^10.0 || ^11.0",
23-
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
20+
"illuminate/database": "^9.0 || ^10.0 || ^11.0 || ^12.0",
21+
"illuminate/support": "^9.0 || ^10.0 || ^11.0 || ^12.0",
22+
"illuminate/testing": "^9.0 || ^10.0 || ^11.0 || ^12.0",
23+
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0",
2424
"spatie/laravel-package-tools": "^1.12 || ^1.14"
2525
},
2626
"require-dev": {
2727
"friendsofphp/php-cs-fixer": "^3.13",
28-
"nunomaduro/larastan": "^1.0 || ^2.5",
29-
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
30-
"pestphp/pest": "^1.22 || ^2.0",
31-
"pestphp/pest-plugin-laravel": "^1.22 || ^2.0",
28+
"nunomaduro/larastan": "^1.0 || ^2.5 || ^3.1",
29+
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0",
30+
"pestphp/pest": "^1.22 || ^2.0 || ^3.7",
31+
"pestphp/pest-plugin-laravel": "^1.22 || ^2.0 || ^3.1",
3232
"spatie/laravel-ray": "^1.32"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)