Otpify is a Laravel package that provides a simple and elegant way to generate and validate one time passwords.
You can install the package via composer:
composer require prasanth-j/otpifyYou can run the migrations with:
php artisan migrateYou can publish the config file with:
php artisan vendor:publish --tag="otpify-config"This is the contents of the published config file:
return [
/**
* The length of token.
*/
'digits' => 6,
/**
* The expiry time of token in minutes.
*/
'validity' => 15
];Optionally, you can publish the migrations using
php artisan vendor:publish --tag="otpify-migrations"use PrasanthJ\Otpify\Facades\Otpify;
Otpify::generate(string $identifier, int $userId, string $otpType, int $digits, int $validity);$identifier: The identity (email or mobile) that will be tied to the OTP.$userId (optional | default = null): The user id from user table.$otpType (optional | default = null): The category of the OTP, like login, verification, etc.$digits (optional | default = 6): The amount of digits to be generated, should be 4 to 8.$validity (optional | default = 15): The validity period of the OTP in minutes.
use PrasanthJ\Otpify\Facades\Otpify;
$otp = Otpify::generate('[email protected]', 2, 'verification', 6, 10);This will generate a six digit OTP that will be valid for 10 minutes and the success response will be:
{
"status": "success",
"token": "535923",
"message": "OTP genetated successfully"
}
use PrasanthJ\Otpify\Facades\Otpify;
Otpify::validate(string $identifier, string $token, string $otpType);$identifier: The identity (email or mobile) that will be tied to the OTP.$token: The token tied to the identity.$otpType (optional | default = null): The category of the OTP, like login, verification, etc.
use PrasanthJ\Otpify\Facades\Otpify;
$otp = Otpify::generate('[email protected]', '535923', 'verification');On Success
{
"status": "success",
"message": "OTP is valid"
}
Does not exist
{
"status": "error",
"message": "OTP does not exist"
}
On Error
{
"status": "warning",
"message": "OTP invalid"
}
Expired
{
"status": "error",
"message": "OTP Expired"
}
Already Verified
{
"status": "info",
"message": "OTP already verified"
}
You can delete verified tokens by running the following artisan command:
php artisan otpify:cleanYou can also add this artisan command to app/Console/Kernel.php to automatically clean on scheduled
protected function schedule(Schedule $schedule)
{
$schedule->command('otpify:clean')->daily();
}If you find an issue with this package or you have any suggestions please help out.
The MIT License (MIT). Please see License File for more information.
