Skip to content

Commit

Permalink
Support Laravel 10.*
Browse files Browse the repository at this point in the history
  • Loading branch information
juampi92 committed Apr 12, 2023
1 parent 7d2bd97 commit 6b2f527
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: ^7.0
- laravel: 8.*
testbench: ^6.6
exclude:
- laravel: 10.*
php: 8.0

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 @@ -12,9 +12,9 @@
],
"require": {
"php": ">=7.4",
"illuminate/cache": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
"illuminate/cache": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
Expand Down

0 comments on commit 6b2f527

Please sign in to comment.