hxm/2fa is a Laravel package for a one time password authentication package..
It currently has 1 GitHub stars and 9 downloads on Packagist (latest version 1.0.1).
Install it with composer require hxm/2fa.
Discover more Laravel packages by hxm
or browse all Laravel packages to compare alternatives.
Last updated
A One Time Password Authentication package.
This package publishes a config/hxm2fa.php file. If you already have a file by that name, you must rename or remove it.
You can install the package via composer:
composer require hxm/2fa
Run the migrations:
php artisan migrate
You should publish the template views and the config/hxm2fa.php config file with:
php artisan vendor:publish --provider=HXM2FA\ServiceProvider
Default config file contents
// ...
return [
'enabled' => true,
'show_secret' => false,
'route' => [
'prefix' => 'user'
],
'extend_layout' => 'layouts.app',
'encrypt_secret' => true,
/*customer QR style*/
'qr_code' => [
'size' => 192,
'margin' => 0,
'background' => [
'red' => 255, //red the red amount of the color, 0 to 255
'green' => 255, //green the green amount of the color, 0 to 255
'blue' => 255 //blue the blue amount of the color, 0 to 255
],
'fill' => [
'red' => 45, //red the red amount of the color, 0 to 255
'green' => 55, //green the green amount of the color, 0 to 255
'blue' => 72 //blue the blue amount of the color, 0 to 255
],
]
];
First, add the HXM2FA\TwoFactorAuthenticatable trait to your User model(s):
use Illuminate\Foundation\Auth\User as Authenticatable;
use HXM2FA\TwoFactorAuthenticatable;
class User extends Authenticatable
{
use TwoFactorAuthenticatable;
// ...
}
We provide a Facede with static functions that perform useful functions:
use HXM2FA\Facades\HXM2FA;
// ...
/*to generate Secret*/
$secret = HXM2FA::generate2FASecret();
/*to generate QrCode html*/
HXM2FA::getQrCode(string $company, string $holder, string $secret)
/*to verify code*/
HXM2FA::verifyCode(string $secret, string $code)
/*To get instance of \PragmaRX\Google2FA\Google2FA */
HXM2FA::getGoogle2FA();
// ...