gravure / laravel-verification-tokens by Luceos

Generic verification library for Laravel with callback and events.
258
0
3
Package Data
Maintainer Username: Luceos
Maintainer Contact: daniel+hyn@klabbers.email (Daniël Klabbers)
Package Create Date: 2017-03-21
Package Last Update: 2017-10-25
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 03:03:49
Package Statistics
Total Downloads: 258
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Laravel verification tokens

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.