Skip to content

Commit

Permalink
Merge pull request #21 from eXolnet/feature/laravel-10-support
Browse files Browse the repository at this point in the history
chore(deps): add Laravel 10 support
  • Loading branch information
xel1045 authored Feb 17, 2023
2 parents ac136de + f7acd1d commit 5c98c3a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ jobs:
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2]
laravel: [9.*]
laravel: [9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.0
laravel: 10.*
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

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

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
],
"require": {
"php": "^8.0",
"illuminate/console": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/http": "^9.0",
"illuminate/support": "^9.0",
"illuminate/routing": "^9.0",
"illuminate/translation": "^9.0"
"illuminate/console": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/translation": "^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.3.3",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit 5c98c3a

Please sign in to comment.