Skip to content

Commit e6a68f6

Browse files
Merge pull request #55 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 98f45d8 + e8c1c6c commit e6a68f6

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
php: [8.0, 8.1, '8.2']
13-
laravel: ['9.*', '10.*', '11.*']
13+
laravel: ['9.*', '10.*', '11.*', '12.*']
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
os: [ubuntu-latest]
1616
include:
@@ -20,11 +20,17 @@ jobs:
2020
testbench: 7.*
2121
- laravel: 11.*
2222
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2325
exclude:
2426
- laravel: 11.*
2527
php: 8.0
2628
- laravel: 11.*
2729
php: 8.1
30+
- laravel: 12.*
31+
php: 8.0
32+
- laravel: 12.*
33+
php: 8.1
2834

2935
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3036

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"require": {
2020
"php": "~7.2|^8.0",
2121
"guzzlehttp/guzzle": "^6.3|^7.0",
22-
"illuminate/support": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
22+
"illuminate/support": "~5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": ">=7.0",
26-
"orchestra/testbench": "^4.0|^8.0|^9.0",
26+
"orchestra/testbench": "^4.0|^8.0|^9.0|^10.0",
2727
"squizlabs/php_codesniffer": "^3.0"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)