Skip to content

Commit 7260971

Browse files
committed
Laravel 5.6 compatible
1 parent cc72567 commit 7260971

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Introduction
1010

11-
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).
11+
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).
1212

1313
- [x] Crypto-based email verification. No need to store a temporary token in the database!
1414
- [x] Event based: No need to override your `register()` method.

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
],
1111
"require": {
1212
"php": ">=5.6.4",
13-
"illuminate/support": "5.4.*|5.5.*",
14-
"illuminate/queue": "5.4.*|5.5.*",
15-
"illuminate/auth": "5.4.*|5.5.*",
13+
"illuminate/support": "5.4.*|5.5.*|5.6.*",
14+
"illuminate/queue": "5.4.*|5.5.*|5.6.*",
15+
"illuminate/auth": "5.4.*|5.5.*|5.6.*",
1616
"nesbot/carbon": "~1.20"
1717
},
1818
"require-dev": {
1919
"mockery/mockery": "~0.9",
20-
"phpunit/phpunit": "^5.7|6.2",
21-
"orchestra/testbench": "~3.4.2|~3.5.0",
22-
"laravel/framework": "5.4.*|5.5.*"
20+
"phpunit/phpunit": "^5.7|6.2|^7.0",
21+
"orchestra/testbench": "~3.4.2|^3.5.0",
22+
"laravel/framework": "5.4.*|5.5.*|5.6.*"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)