Skip to content

Commit

Permalink
Add support to Laravel 10 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb authored Jan 31, 2023
1 parent 5640113 commit aa4aae8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ jobs:
fail-fast: false
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*]
laravel: [10.*, 9.*]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
exclude:
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"type": "library",
"require": {
"php": "^8.0",
"illuminate/console": "^9.0",
"illuminate/database": "^9.0",
"illuminate/events": "^9.0",
"illuminate/support": "^9.0"
"illuminate/console": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/events": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"laravel/legacy-factories": "^1.0.4",
"friendsofphp/php-cs-fixer": "^3.13",
"nunomaduro/larastan": "^2.3"
Expand Down

0 comments on commit aa4aae8

Please sign in to comment.