Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Apr 25, 2024
1 parent 43a5814 commit 2f52278
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,23 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.4, 8.0, 8.1]
laravel: [^8.0, ^9.0, ^10.0]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [^8.0, ^9.0, ^10.0, ^11.0]
#stability: [prefer-lowest, prefer-stable]
stability: [prefer-stable]
exclude:
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: 7.4
laravel: 11
- php: 8.0
laravel: 10
- php: 8.0
laravel: 11
- php: 8.1
laravel: 11

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/translation": "^8.0|^9.0|^10.0"
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/translation": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"graham-campbell/testbench": "^6.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/phpunit-watcher": "^1.23"
Expand Down

0 comments on commit 2f52278

Please sign in to comment.