Skip to content

Commit

Permalink
Merge pull request #11 from mateusjunges/laravel/7.x
Browse files Browse the repository at this point in the history
Add support for laravel 7
  • Loading branch information
Mateus Junges authored Mar 4, 2020
2 parents e9cada5 + e539a1e commit ef5f404
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .idea/laravel-invite-codes.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ matrix:
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.4
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.4
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'

allow_failures:
- php: 7.4snapshot
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `mateusjunges/laravel-invite-codes` will be documented in this file.

## 1.2.0 2020-03-03
- Add support for Laravel v7.x

## 1.1.0 2020-02-22
- Add path to default invite model where missing (allows to use this package without publishing the config)
- Allows Route model binding by passing the invite code to the route
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@
],
"require": {
"php": "^7.4",
"illuminate/auth": "^5.6|^5.7|^5.8|^6.0",
"illuminate/support": "^5.6|^5.7|^5.8|^6.0",
"illuminate/database": "^5.6|^5.7|^5.8|^6.0"
"illuminate/auth": "^5.6|^5.7|^5.8|^6.0|^7.0",
"illuminate/support": "^5.6|^5.7|^5.8|^6.0|^7.0",
"illuminate/database": "^5.6|^5.7|^5.8|^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "^3.6|^3.7|^3.8",
"phpunit/phpunit": "^7.0|^8.0",
"predis/predis": "^1.1",
"facade/ignition": "^1.4"
"orchestra/testbench": "^3.6|^3.7|^3.8|^4.0|^5.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"predis/predis": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ef5f404

Please sign in to comment.