Skip to content

Commit

Permalink
Merge pull request #12 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 e37d368 + 74d35f6 commit 40681f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0",
"illuminate/support": "^9.0|^10.0",
"laravelcollective/html": "^6.2.1"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"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 40681f7

Please sign in to comment.