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 2687f23 commit de57095
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
laravel: [ '8.*', '9.*', '10.*' ]
laravel: [ '8.*', '9.*', '10.*', '11.*' ]
stability: [ prefer-lowest, prefer-stable ]
exclude:
- laravel: '8.*'
Expand All @@ -21,6 +21,12 @@ jobs:
php: '7.4'
- laravel: '10.*'
php: '8.0'
- laravel: '11.*'
php: '7.4'
- 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,15 +21,15 @@
],
"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": {
"friendsofphp/php-cs-fixer": "^3.14",
"league/flysystem-adapter-test-utilities": "^2.0|^3.0",
"league/flysystem-memory": "^2.0|^3.0",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit de57095

Please sign in to comment.