lucor/laravel-auth-file-driver
File authentication driver for Laravel
A File Authentication Driver for Laravel.
Installation
Composer
As usual, install this package through Composer.
"require": {
"lucor/laravel-auth-file-driver": "0.9.*"
}
Service Provider configuration
Add the service provider in app/config/app.php in the providers section:
'providers' => array(
...
'Lucor\Auth\AuthServiceProvider',
)
Driver configuration
Change the default driver in app/config/auth.php:
'driver' => 'file',
Users configuration
Execute the config publish command:
php artisan config:publish lucor/laravel-auth-file-driver.
this will add the users configuration file in app/config/packages/lucor/auth/users.php.
Copyright and License
This package is released under the MIT License. See the LICENSE file for details.
Related Packages
cesargb/laravel-magiclink
Create secure link for access to private data or login in Laravel without passwo...
1,547,864
465
lab404/laravel-impersonate
Laravel Impersonate is a plugin that allows to you to authenticate as your users...
19,493,333
2,339


