Skip to content

Commit

Permalink
build: add Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Oct 24, 2024
1 parent d3a654b commit f0d0698
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ jobs:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2' ]
laravel: [ '8.*', '9.*', '10.*' ]
laravel: [ '8.*', '9.*', '10.*', '11.*' ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- laravel: '8.*'
php: '8.2'
- laravel: '10.*'
php: '8.0'
- laravel: '11.*'
php: '8.0'
- laravel: '11.*'
php: '8.1'

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
],
"require": {
"php": "^8.0",
"illuminate/encryption": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/encryption": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"league/flysystem": "^2.0|^3.0"
},
"require-dev": {
Expand Down

0 comments on commit f0d0698

Please sign in to comment.