Skip to content

Commit 896e901

Browse files
authored
Merge pull request #30 from laravel-shift/l12-compatibility
2 parents 7ca04e6 + 2dd161c commit 896e901

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/tests.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
pull_request:
66
schedule:
7-
- cron: 0 0 * * *
7+
- cron: '0 0 * * *'
88

99
jobs:
1010
tests:
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
php: [7.3, 7.4, 8.0, 8.1, '8.2']
17-
laravel: [6.0, 7.0, 8.0, 9.0, 10.0, '11.0']
17+
laravel: [6.0, 7.0, 8.0, 9.0, 10.0, '11.0', '12.0']
1818
exclude:
1919
- php: 7.3
2020
laravel: 10.0
@@ -34,6 +34,14 @@ jobs:
3434
php: 8.0
3535
- laravel: '11.0'
3636
php: 8.1
37+
- laravel: '12.0'
38+
php: 7.3
39+
- laravel: '12.0'
40+
php: 7.4
41+
- laravel: '12.0'
42+
php: 8.0
43+
- laravel: '12.0'
44+
php: 8.1
3745

3846
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3947

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
],
2121
"require": {
2222
"php": "^7.3|^8.0",
23-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0"
23+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
2525
},
2626
"require-dev": {
27-
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0|^11.0",
28-
"orchestra/testbench": "^6.3|^7.0|^8.0|^9.0",
29-
"phpunit/phpunit": "^8.4|^9.1|^10.5"
27+
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
28+
"orchestra/testbench": "^6.3|^7.0|^8.0|^9.0|^10.0",
29+
"phpunit/phpunit": "^8.4|^9.1|^10.5|^11.5.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)