Skip to content

Commit

Permalink
Merge pull request #6 from eXolnet/feature/laravel-9
Browse files Browse the repository at this point in the history
feat: add support for laravel 9
  • Loading branch information
Gandhi11 committed Feb 13, 2022
2 parents d7ffe6e + 388c3eb commit 59e1854
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [8.*]
laravel: [8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 8.*
dependency-version: prefer-lowest
- php: 7.3
laravel: 9.*
- php: 7.4
laravel: 9.*
include:
- laravel: 8.*
testbench: 6.*
- laravel: 9.*
testbench: 7.*
#Testing php 8.1 with Laravel 8.74 as its lowest
- php: 8.1
laravel: ^8.74
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": "^7.3|^8.0",
"illuminate/support": "^8.0",
"illuminate/support": "^8.0|^9.0",
"laravelcollective/html": "^6.2.1"
},
"require-dev": {
"exolnet/phpcs-config": "^2.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.3.3",
"squizlabs/php_codesniffer": "^3.6"
},
Expand Down

0 comments on commit 59e1854

Please sign in to comment.