Skip to content

Commit

Permalink
Update: support laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
jordyvanderhaegen committed Mar 2, 2023
1 parent f356d5d commit 868a415
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.80|^9.0",
"illuminate/console": "^8.80|^9.0",
"illuminate/filesystem": "^8.80|^9.0"
"illuminate/support": "^8.80|^9.0|^10.0",
"illuminate/console": "^8.80|^9.0|^10.0",
"illuminate/filesystem": "^8.80|^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down

0 comments on commit 868a415

Please sign in to comment.