Skip to content

Commit 1a94608

Browse files
committed
laravel 12 support
1 parent 876166d commit 1a94608

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,19 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
1616
php: [8.2, 8.1, 8.0]
17-
laravel: [9.*, 10.*, 11.*]
17+
laravel: [9.*, 10.*, 11.*, 12.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
exclude:
2020
- php: 8.0
2121
laravel: 10.*
2222
- php: 8.0
2323
laravel: 11.*
24+
- php: 8.0
25+
laravel: 12.*
2426
- php: 8.1
2527
laravel: 11.*
28+
- php: 8.1
29+
laravel: 12.*
2630
- php: 8.2
2731
laravel: 9.*
2832
include:
@@ -38,6 +42,10 @@ jobs:
3842
testbench: 9.*
3943
pest: 2.*
4044
collision: 8.*
45+
- laravel: 12.*
46+
testbench: 10.*
47+
pest: 3.*
48+
collision: 8.*
4149

4250
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4351

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
],
2121
"require": {
2222
"php": "^8.0",
23-
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
24-
"opcodesio/mail-parser": "^0.1.6"
23+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"opcodesio/mail-parser": "^0.1.6|^0.2"
2525
},
2626
"require-dev": {
2727
"guzzlehttp/guzzle": "^7.2",
2828
"itsgoingd/clockwork": "^5.1",
2929
"laravel/pint": "^1.0",
3030
"nunomaduro/collision": "^7.0|^8.0",
31-
"orchestra/testbench": "^7.6|^8.0|^9.0",
32-
"pestphp/pest": "^2.0",
33-
"pestphp/pest-plugin-laravel": "^2.0",
31+
"orchestra/testbench": "^7.6|^8.0|^9.0|^10.0",
32+
"pestphp/pest": "^2.0|^3.7",
33+
"pestphp/pest-plugin-laravel": "^2.0|^3.1",
3434
"spatie/test-time": "^1.3"
3535
},
3636
"suggest": {

0 commit comments

Comments
 (0)