Skip to content

Commit e6ed4df

Browse files
authored
Fix: Laravel 11 support (#86)
* fix: use the correct version of laravel/framework to support Laravel 11 * chore: minimum requirements section updated * chore: remove unwanted semicolon * test: Setup CI workflow to run tests on PHP 8.3
1 parent d85eaeb commit e6ed4df

File tree

3 files changed

+95
-43
lines changed

3 files changed

+95
-43
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [7.3, 7.4, 8.0, 8.1, 8.2]
11+
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
1212
laravel: [7.*, 8.*, 9.*, 10.*, 11.*]
1313
dependency-versions: [prefer-stable]
1414
include:
@@ -23,6 +23,13 @@ jobs:
2323
- laravel: 7.*
2424
testbench: 5.*
2525
exclude:
26+
- php: 8.3
27+
laravel: 7.*
28+
- php: 8.3
29+
laravel: 8.*
30+
- php: 8.3
31+
laravel: 9.*
32+
2633
- php: 8.2
2734
laravel: 7.*
2835
- php: 8.2

0 commit comments

Comments
 (0)