gravure / laravel-verification-tokens
Generic verification library for Laravel with callback and events.
Installs: 259
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/gravure/laravel-verification-tokens
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: 2025-10-05 21:16:08 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.