utkarsh / laravel-two-step-verification
A laravel package which adds the 2 step verification api.
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:laravel-plugin
Requires
- utkarsh/laravel-qrcode: ^1.0
Requires (Dev)
- utkarsh/laravel-qrcode: ^1.0
This package is not auto-updated.
Last update: 2025-02-02 04:10:11 UTC
README
A laravel plugin to easily implement Google Authenticator.
Installation
Install it via composer composer require utkarsh/laravel-two-step-verification
Then add the TwoStepVerificationServiceProvider
to the providers
array in config/app.php
.
Utkarsh\TwoStepVerification\Providers\TwoStepVerificationServiceProvider::class,
then add the TwoStepVerification
alias to the aliases array in the same file.
'TwoStepVerification' => Utkarsh\TwoStepVerification\Facades\Authenticate::class,
Usage
Coming Soon!