stanfortonski/laravel-twofactor

Two-factor authentication for Laravel 7.x and 8.x via e-mail.

v1.0.2 2021-03-15 11:48 UTC

This package is auto-updated.

Last update: 2024-04-15 18:42:54 UTC


README

Two-factor authentication package for Laravel 7.x and 8.x via e-mail.

Information

This package provides you to set of middleware, view, migration, routes with controllers, transaltions and methods to user model which allow you to set up 2FA vie email for your application.

Installation

  1. First install package via composer. Run composer require stanfortonski/laravel-twofactor.
  2. Setup provider. In config/app.php add following code to bottom of providers:
'providers' => [
    //...
    Stanfortonski\Laraveltwofactor\ServiceProvider::class
],
  1. Setup middleware. In app/Http/Kernel.php add following code to bottom of middlewares:
protected $routeMiddleware = [
    //...
    'twofactor' => \Stanfortonski\Laraveltwofactor\Middleware\TwoFactor::class
];
  1. Use \Stanfortonski\Laraveltwofactor\Traits\TwoFactorable trait in User class with \Illuminate\Notifications\Notifiable. Snippet: use Notifiable, TwoFactorable;
  2. You have to publish config file twofactor.php. Run command: php artisan vendor:publish --provider="Stanfortonski\Laraveltwofactor\ServiceProvider".
  3. Run php artisan migrate.
  4. Add line $user->startTwoFactor() in your login process. For example in Laravel/ui add this line in Auth\LoginController@authenticated method before redirect.
  5. Set up your email in .env.

Configuration

In config/twofactor.php

  1. If you want to disable twofactor/preferences routes set preferences.allow to false.
  2. If you want to change expire time of 2FA code you will change expire_duration. Default value is 15 minutes.
  3. Look at routes.login, routes.successful and routes.return that must be real routes name in your application. More in file itself.

Usage

You have to set twofactor middleware in routes. The way depends on you.

Example:

    Route::get('/home', function(){
        return view('home');
    })->middleware(['auth', 'twofactor']);