Skip to content

Commit 5dca81f

Browse files
authored
Merge pull request #121 from ariaieboy/l12
add laravel 12 support
2 parents 1864f42 + 83c7275 commit 5dca81f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: ['8.2', '8.3', '8.4']
14-
laravel: [10.*, 11.*]
14+
laravel: [10.*, 11.*, 12.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 10.*
1818
testbench: 8.*
1919
- laravel: 11.*
2020
testbench: 9.*
21+
- laravel: 12.*
22+
testbench: 10.*
2123

2224
steps:
2325
- name: Checkout code

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
],
2020
"require": {
2121
"php": "^8.2",
22-
"illuminate/contracts": "^10.0|^11.0",
23-
"illuminate/support": "^10.0|^11.0",
24-
"illuminate/validation": "^10.0|^11.0",
25-
"illuminate/view": "^10.0|^11.0",
22+
"illuminate/contracts": "^10.0|^11.0|^12",
23+
"illuminate/support": "^10.0|^11.0|^12",
24+
"illuminate/validation": "^10.0|^11.0|^12",
25+
"illuminate/view": "^10.0|^11.0|^12",
2626
"vlucas/phpdotenv": "^5.4.1"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit": "^10.5|^11.0",
30-
"orchestra/testbench": "^8.0|^9.0",
30+
"orchestra/testbench": "^8.0|^9.0|^10",
3131
"vimeo/psalm": "^6.0"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)