gravure / laravel-verification-tokens
Generic verification library for Laravel with callback and events.
1.0
2017-03-23 21:50 UTC
Requires
- php: ^7.0
- illuminate/database: ^5.4
- illuminate/http: ^5.4
- illuminate/routing: ^5.4
- illuminate/support: ^5.4
- ramsey/uuid: ^3.6.0
This package is auto-updated.
Last update: 2024-11-05 18:54:31 UTC
README
A library to easily generate a token, for use in e-mail for instance, and automatically process callbacks.
Installation
composer require gravure/laravel-verification-tokens
Register the service provider in your config/app.php
:
// Gravure verification tokens Gravure\Verification\Providers\VerificationProvider::class,
The route provider register the callback handler, the route is named:
verification.callback
. Feel free to implement your own provider and/or route.