Skip to content

Commit c5e6426

Browse files
committed
Add Support for Laravel 12
1 parent d69b75f commit c5e6426

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: [8.2, 8.3, 8.4]
13-
laravel: [11.*]
14-
phpunit: [10.*]
13+
laravel: [11.*, 12.*]
14+
phpunit: [10.*, 11.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 11.*
1818
testbench: 9.*
19+
- laravel: 12.*
20+
testbench: 10.*
1921
exclude:
2022
- php: 8.2
2123
phpunit: 11.*

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"require": {
1616
"php": "^8.2",
1717
"ext-json": "*",
18-
"illuminate/console": "^11.0",
19-
"illuminate/support": "^11.0",
18+
"illuminate/console": "^11.0 | ^12.0",
19+
"illuminate/support": "^11.0 | ^12.0",
2020
"stefanzweifel/laravel-stats-phploc": "^7.0 | ^8.0",
2121
"symfony/finder": "^7.0",
2222
"symfony/process": " ^7.0"
@@ -27,8 +27,8 @@
2727
"laravel/browser-kit-testing": "^7.1 | ^8.0",
2828
"laravel/dusk": "^8.0",
2929
"livewire/livewire": "^3.0",
30-
"orchestra/testbench": "^9.0",
31-
"pestphp/pest": "^2",
30+
"orchestra/testbench": "^9.0 | ^10",
31+
"pestphp/pest": "^2 | ^3",
3232
"phpunit/phpunit": "^10.0 | ^11.0",
3333
"rector/rector": "^1.0"
3434
},

0 commit comments

Comments
 (0)