Skip to content

Commit

Permalink
Merge pull request #62 from cesargb/l9
Browse files Browse the repository at this point in the history
add support to L9
  • Loading branch information
cesargb committed Jan 17, 2022
2 parents 30b75da + b6b4920 commit fa96405
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ jobs:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1]
laravel: [8.*, 6.*]
laravel: [9.*, 8.*, 6.*]
dependency-version: [prefer-stable]
exclude:
- php: 8.1
laravel: 6.*
- php: 7.4
laravel: 9.*
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 6.*
Expand Down
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"license": "MIT",
"require": {
"php" : "^7.4 || ^8.0",
"illuminate/auth": "^6.0|^8.0",
"illuminate/container": "^6.0|^8.0",
"illuminate/contracts": "^6.0|^8.0",
"illuminate/database": "^6.0|^8.0",
"illuminate/auth": "^6.0|^8.0|^9.0",
"illuminate/container": "^6.0|^8.0|^9.0",
"illuminate/contracts": "^6.0|^8.0|^9.0",
"illuminate/database": "^6.0|^8.0|^9.0",
"laravel/serializable-closure": "^1.0"
},
"autoload": {
Expand All @@ -48,7 +48,9 @@
}
},
"require-dev": {
"orchestra/testbench": "^4.0|^6.0",
"orchestra/testbench": "^4.0|^6.0|^7.0",
"phpunit/phpunit": "^7.0|^9.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit fa96405

Please sign in to comment.