Skip to content

Commit

Permalink
Laravel 5.6 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
josiasmontag committed Feb 8, 2018
1 parent cc72567 commit 7260971
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Introduction

The Laravel Email Verification package is built for Laravel 5.4/5.5 to easily handle a user verification and validate the e-mail. It is inspired by [crypto-based password resets](https://github.com/laravel/framework/pull/17499) and the [email verification package by jrean](https://github.com/jrean/laravel-user-verification).
The Laravel Email Verification package is built for Laravel 5.4/5.5/5.6 to easily handle a user verification and validate the e-mail. It is inspired by [crypto-based password resets](https://github.com/laravel/framework/pull/17499) and the [email verification package by jrean](https://github.com/jrean/laravel-user-verification).

- [x] Crypto-based email verification. No need to store a temporary token in the database!
- [x] Event based: No need to override your `register()` method.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "5.4.*|5.5.*",
"illuminate/queue": "5.4.*|5.5.*",
"illuminate/auth": "5.4.*|5.5.*",
"illuminate/support": "5.4.*|5.5.*|5.6.*",
"illuminate/queue": "5.4.*|5.5.*|5.6.*",
"illuminate/auth": "5.4.*|5.5.*|5.6.*",
"nesbot/carbon": "~1.20"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^5.7|6.2",
"orchestra/testbench": "~3.4.2|~3.5.0",
"laravel/framework": "5.4.*|5.5.*"
"phpunit/phpunit": "^5.7|6.2|^7.0",
"orchestra/testbench": "~3.4.2|^3.5.0",
"laravel/framework": "5.4.*|5.5.*|5.6.*"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7260971

Please sign in to comment.