Skip to content

Commit 7723b53

Browse files
authored
Merge pull request #58 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 10ee09f + 9c419a3 commit 7723b53

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
1515
php: [8.2, 8.1, 8.0, 7.4, 7.3]
16-
laravel: ['7.*', '8.*', '9.*', '10.*', '11.*']
16+
laravel: ['7.*', '8.*', '9.*', '10.*', '11.*', '12.*']
1717
dependency-version: [prefer-stable]
1818
include:
1919
- laravel: 10.*
@@ -26,6 +26,8 @@ jobs:
2626
testbench: 5.*
2727
- laravel: 11.*
2828
testbench: 9.*
29+
- laravel: 12.*
30+
testbench: 10.*
2931
exclude:
3032
- laravel: 10.*
3133
php: 8.0
@@ -49,6 +51,14 @@ jobs:
4951
php: 7.4
5052
- laravel: 11.*
5153
php: 7.3
54+
- laravel: 12.*
55+
php: 8.1
56+
- laravel: 12.*
57+
php: 8.0
58+
- laravel: 12.*
59+
php: 7.4
60+
- laravel: 12.*
61+
php: 7.3
5262

5363
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
5464

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
],
1818
"require": {
1919
"php": "^7.3|^8.0",
20-
"illuminate/auth": "^7.0|^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/queue": "^7.0|^8.0|^9.0|^10.0|^11.0"
20+
"illuminate/auth": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/notifications": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/queue": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0",
26-
"pestphp/pest": "^1.22|^2.34",
27-
"pestphp/pest-plugin-laravel": "^1.3|^2.3",
28-
"phpunit/phpunit": "^9.0|^10.5",
25+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
26+
"pestphp/pest": "^1.22|^2.34|^3.7",
27+
"pestphp/pest-plugin-laravel": "^1.3|^2.3|^3.1",
28+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3",
2929
"spatie/test-time": "^1.1"
3030
},
3131
"autoload": {

0 commit comments

Comments
 (0)