utkarsh / laravel-two-step-verification
A laravel package which adds the 2 step verification api.
Package info
github.com/Utkarsh-vishnoi/laravel-2-step-verification
Type:laravel-plugin
pkg:composer/utkarsh/laravel-two-step-verification
Requires
- utkarsh/laravel-qrcode: ^1.0
Requires (Dev)
- utkarsh/laravel-qrcode: ^1.0
This package is not auto-updated.
Last update: 2026-03-15 09:42:19 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!