gocrew/laravel-reauth

Reauth users for sensitive parts of your app
359 4
Install
composer require gocrew/laravel-reauth
Latest Version:v1.0.6
PHP:>=5.5.0
License:MIT
Last Updated:Apr 29, 2016
Links: GitHub  ·  Packagist
Maintainer: pascalschwientek

Laravel ReAuth

Build Status Latest Stable Version Latest Unstable Version License

Re-Auth users for sensitive parts of your app.

Installation

Step 1: Composer

From the command line, run:

composer require gocrew/laravel-reauth

Step 2: Service Provider

For your Laravel app, open config/app.php and, within the providers array, append:

gocrew\LaravelReAuth\ServiceProvider::class

This will bootstrap the package into Laravel.

Step 3: The Middleware

In your app\Http\Kernel.php file, add the reauth middleware to the $routeMiddleware array.

protected $routeMiddleware = [
    // ...
    'reauth'         => \gocrew\LaravelReAuth\Http\Middleware\Reauthenticate::class,
    // ...
];

Usage

Basic

Apply the middleware on a route you want to protect:

Route::get('settings', ['uses' => 'Controller@getSettings', 'middleware' => 'reauth']);

Done!

Advanced

If you need a more advanced setup, no problem. Everything is overwritable and everything is as modular as possible.

TODO

  • advanced docs
  • tests

License

The contents of this repository is released under the MIT license.

Related Packages

mpociot/reauthenticate

Reauthenticate users by letting them re-enter their passwords for specific parts...

35,932 301
xinax/laravel-latch

Laravel wrapper for Latch SDK (Second security layer).

14 1
rinvex/laravel-authy

Rinvex Authy is a simple wrapper for Authy TOTP, the best rated Two-Factor Authe...

78,132 32
restricted/authchain

Laravel 4 chain authentication (LDAP, IMAP, IP, Eloquent)

100 5