Skip to content

Commit

Permalink
Merge pull request #2 from swisnl/feature/laravel-11
Browse files Browse the repository at this point in the history
Add support for Laravel 11
  • Loading branch information
JaZo authored Oct 24, 2024
2 parents 1d561c6 + 4692f9a commit 387c0d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ jobs:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2' ]
laravel: [ '9.*', '10.*' ]
laravel: [ '9.*', '10.*', '11.*' ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- 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
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
],
"require": {
"php": "^8.0",
"laravel/framework": "^9.0|^10.0",
"laravel/framework": "^9.0|^10.0|^11.0",
"swisnl/flysystem-encrypted": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 387c0d1

Please sign in to comment.