Skip to content

Commit e44fb0b

Browse files
authored
Merge pull request #20 from alissn/Laravel12
Laravel 12 support
2 parents 4e5f5dc + 515c61f commit e44fb0b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: ['8.0', '8.1', '8.2', '8.3']
14-
laravel: [9.*, 10.*, 11.*]
14+
laravel: [9.*, 10.*, 11.*, 12.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 9.*
@@ -20,6 +20,8 @@ jobs:
2020
testbench: 8.*
2121
- laravel: 11.*
2222
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2325
exclude:
2426
- laravel: 9.*
2527
php: 8.3
@@ -29,7 +31,10 @@ jobs:
2931
php: 8.0
3032
- laravel: 11.*
3133
php: 8.1
32-
34+
- laravel: 12.*
35+
php: 8.0
36+
- laravel: 12.*
37+
php: 8.1
3338
steps:
3439
- name: Checkout code
3540
uses: actions/checkout@v3

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"php": "^8.0",
2424
"ext-json": "*",
2525
"balping/json-raw-encoder": "^1.0",
26-
"illuminate/support": "^9.0|^10.0|^11.0"
26+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
2727
},
2828
"require-dev": {
2929
"mockery/mockery": "^1.5",
30-
"phpunit/phpunit": "^9.5|^10.0|^11.0",
31-
"orchestra/testbench": "^7.4|^8.0|^9.0"
30+
"phpunit/phpunit": "^9.5|^10.0|^11.0|^12.0",
31+
"orchestra/testbench": "^7.4|^8.0|^9.0|^10.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)