Skip to content

Commit

Permalink
Fix: Laravel 11 support (#86)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
FarhanShares authored Oct 5, 2024
1 parent d85eaeb commit e6ed4df
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 43 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2]
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
laravel: [7.*, 8.*, 9.*, 10.*, 11.*]
dependency-versions: [prefer-stable]
include:
Expand All @@ -23,6 +23,13 @@ jobs:
- laravel: 7.*
testbench: 5.*
exclude:
- php: 8.3
laravel: 7.*
- php: 8.3
laravel: 8.*
- php: 8.3
laravel: 9.*

- php: 8.2
laravel: 7.*
- php: 8.2
Expand Down
Loading

0 comments on commit e6ed4df

Please sign in to comment.