Skip to content

Commit ed8483d

Browse files
authored
Merge pull request #133 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents c2286c3 + 9aa4c74 commit ed8483d

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

.github/workflows/run-tests.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
php: [8.0, 8.1, 8.2]
16-
laravel: ['8.*', '9.*', '10.*', '11.*']
16+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1717
stability: [prefer-stable]
1818
exclude:
1919
- php: 8.0
@@ -24,6 +24,10 @@ jobs:
2424
php: 8.0
2525
- laravel: 11.*
2626
php: 8.1
27+
- laravel: 12.*
28+
php: 8.0
29+
- laravel: 12.*
30+
php: 8.1
2731
include:
2832
- laravel: 10.*
2933
testbench: 8.*
@@ -33,6 +37,8 @@ jobs:
3337
testbench: 6.23
3438
- laravel: 11.*
3539
testbench: 9.*
40+
- laravel: 12.*
41+
testbench: 10.*
3642

3743
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3844

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/log": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
23-
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/log": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
23+
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
2525
"willdurand/email-reply-parser": "^2.8",
26-
"zbateson/mail-mime-parser": "^1.1|^2.4"
26+
"zbateson/mail-mime-parser": "^1.1|^2.4|^3.0"
2727
},
2828
"require-dev": {
2929
"laminas/laminas-mail": "^2.13",
3030
"mockery/mockery": "^1.2",
31-
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0|^9.0",
32-
"phpunit/phpunit": "^7.0|^8.0|^9.3|^10.5"
31+
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0|^9.0|^10.0",
32+
"phpunit/phpunit": "^7.0|^8.0|^9.3|^10.5|^11.5.3"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)