Package Data | |
---|---|
Maintainer Username: | LifeOnScreen |
Package Create Date: | 2018-10-16 |
Package Last Update: | 2022-03-29 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:07:27 |
Package Statistics | |
---|---|
Total Downloads: | 84,645 |
Monthly Downloads: | 275 |
Daily Downloads: | 0 |
Total Stars: | 23 |
Total Watchers: | 4 |
Total Forks: | 57 |
Total Open Issues: | 15 |
This package enforces 2FA for Laravel Nova.
Upgrade guide is available Here.
Install via composer
$ composer require lifeonscreen/nova-google2fa
Publish config and migrations
$ php artisan vendor:publish --provider="Lifeonscreen\Google2fa\ToolServiceProvider"
Run migrations
$ php artisan migrate
Add relation to User model
use Lifeonscreen\Google2fa\Models\User2fa;
...
/**
* @return HasOne
*/
public function user2fa(): HasOne
{
return $this->hasOne(User2fa::class);
}
Add middleware to nova.config
.
[
...
'middleware' => [
...
\Lifeonscreen\Google2fa\Http\Middleware\Google2fa::class,
...
],
]
return [
/**
* Disable or enable middleware.
*/
'enabled' => env('GOOGLE_2FA_ENABLED', true),
'models' => [
/**
* Change this variable to path to user model.
*/
'user' => 'App\User',
/**
* Change this if you need a custom connector
*/
'user2fa' => User2fa::class,
],
'tables' => [
/**
* Table in which users are stored.
*/
'user' => 'users',
],
'recovery_codes' => [
/**
* Number of recovery codes that will be generated.
*/
'count' => 8,
/**
* Number of blocks in each recovery code.
*/
'blocks' => 3,
/**
* Number of characters in each block in recovery code.
*/
'chars_in_block' => 16,
/**
* The following algorithms are currently supported:
* - PASSWORD_DEFAULT
* - PASSWORD_BCRYPT
* - PASSWORD_ARGON2I // available from php 7.2
*/
'hashing_algorithm' => PASSWORD_BCRYPT,
],
];
If you discover any security-related issues, please email the author instead of using the issue tracker.
MIT license. Please see the license file for more information.