Skip to content

Commit 2fea8e5

Browse files
authored
[1.x] Laravel 11.x Compatibility (#23)
2 parents e2e826a + 0bd66d1 commit 2fea8e5

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ on:
44
push:
55
pull_request:
66
schedule:
7-
- cron: '0 0 * * *'
7+
- cron: 0 0 * * *
88

99
jobs:
1010
tests:
11-
1211
runs-on: ubuntu-latest
12+
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.3, 7.4, 8.0, 8.1]
17-
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
16+
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']
1818
exclude:
1919
- php: 7.3
2020
laravel: 10.0
@@ -26,6 +26,14 @@ jobs:
2626
laravel: 9
2727
- php: 7.4
2828
laravel: 9
29+
- laravel: '11.0'
30+
php: 7.3
31+
- laravel: '11.0'
32+
php: 7.4
33+
- laravel: '11.0'
34+
php: 8.0
35+
- laravel: '11.0'
36+
php: 8.1
2937

3038
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3139

composer.json

Lines changed: 5 additions & 5 deletions
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",
24-
"illuminate/database": "^7.0|^8.0|^9.0|^10.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"
2525
},
2626
"require-dev": {
27-
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0",
28-
"orchestra/testbench": "^6.3|^7.0|^8.0",
29-
"phpunit/phpunit": "^8.4|^9.1"
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"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)