Skip to content

Commit e3759ef

Browse files
authored
Merge pull request #210 from KentarouTakeda/support-laravel-13
Laravel 13 Support
2 parents dcae801 + 71390a5 commit e3759ef

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
laravel: [12.*, 11.*, 10.*, 9.*]
11+
laravel: [13.*, 12.*, 11.*, 10.*, 9.*]
1212
php: ['8.5', '8.4', '8.3', '8.2', '8.1', '8.0']
1313
include:
1414
- laravel: 8.*
@@ -48,6 +48,12 @@ jobs:
4848
- laravel: 5.6
4949
php: '7.1'
5050
exclude:
51+
- laravel: 13.*
52+
php: '8.2'
53+
- laravel: 13.*
54+
php: '8.1'
55+
- laravel: 13.*
56+
php: '8.0'
5157
- laravel: 12.*
5258
php: '8.1'
5359
- laravel: 12.*
@@ -83,7 +89,7 @@ jobs:
8389
coverage: none
8490

8591
- name: Fix dependencies
86-
if: ${{ startsWith(matrix.laravel, '11') || startsWith(matrix.laravel, '12') }}
92+
if: ${{ startsWith(matrix.laravel, '11') || startsWith(matrix.laravel, '12') || startsWith(matrix.laravel, '13') }}
8793
run: |
8894
composer require "laravel/serializable-closure:>=1.3" --no-interaction --no-update
8995
- name: Install dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"illuminate/database": ">=5.6 <13.0"
17+
"illuminate/database": ">=5.6 <14.0"
1818
},
1919
"require-dev": {
2020
"ext-sqlite3": "*",

0 commit comments

Comments
 (0)