utkarsh / laravel-two-step-verification
A laravel package which adds the 2 step verification api.
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
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: 2025-11-23 08:24:54 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!