alrez96 / laravel-otp
OTP login system for the Laravel framework.
v1.2.0
2024-05-10 16:50 UTC
Requires
- php: ^8.2
- laravel/framework: ^11.0
Requires (Dev)
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-03-11 11:06:22 UTC
README
Introduction
This is a simple package for implementing the OTP system in Laravel, which only includes generating the token and validating it. You can use this package alongside Laravel's authentication system or the laravel/breeze package.
Installation
You can install the package via composer:
composer require alrez96/laravel-otp
Configuration
You should publish the migration and the config/otp.php config file with:
php artisan vendor:publish --provider="Alrez96\LaravelOtp\OtpServiceProvider"
Usage
Generate OTP Token
<?php use Alrez96\LaravelOtp\Facades\Otp; Otp::generateToken(string $identifier); // or using helper otp()->generateToken(string $identifier);
Validate OTP Token
<?php use Alrez96\LaravelOtp\Facades\Otp; Otp::validateToken(string $identifier, string $token); // or using helper otp()->validateToken(string $identifier, string $token);
License
This package is open-sourced software licensed under the MIT license.