Skip to content

Commit df83ff1

Browse files
Merge pull request #20 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 1b3ce0d + 135909c commit df83ff1

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.github/workflows/tests.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
php: [7.2, 7.3, 7.4, 8.0, 8.1, '8.2']
23-
laravel: ['7.*', '8.*', '9.*', '10.*', '11.*']
23+
laravel: ['7.*', '8.*', '9.*', '10.*', '11.*', '12.*']
2424
dependency-version: [prefer-lowest, prefer-stable]
2525
include:
2626
- laravel: 10.*
@@ -36,6 +36,8 @@ jobs:
3636
testbench: 7.*
3737
- laravel: 11.*
3838
testbench: 9.*
39+
- laravel: 12.*
40+
testbench: 10.*
3941
exclude:
4042
- laravel: 10.*
4143
php: 7.2
@@ -68,6 +70,16 @@ jobs:
6870
php: 8.0
6971
- laravel: 11.*
7072
php: 8.1
73+
- laravel: 12.*
74+
php: 7.2
75+
- laravel: 12.*
76+
php: 7.3
77+
- laravel: 12.*
78+
php: 7.4
79+
- laravel: 12.*
80+
php: 8.0
81+
- laravel: 12.*
82+
php: 8.1
7183

7284
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
7385

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
],
1212
"require": {
1313
"php": "^7.2|^8.0",
14-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
15-
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0|^11.0",
16-
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0"
14+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
15+
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
16+
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
1717
},
1818
"require-dev": {
19-
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0",
19+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
2020
"mockery/mockery": "^1.3.3",
21-
"phpunit/phpunit": "^8.4|^9.5|^10.5"
21+
"phpunit/phpunit": "^8.4|^9.5|^10.5|^11.5.3"
2222
},
2323
"autoload": {
2424
"psr-4": {

0 commit comments

Comments
 (0)