Package Data | |
---|---|
Maintainer Username: | lucor |
Maintainer Contact: | lu.corbo@gmail.com (Luca Corbo) |
Package Create Date: | 2013-12-20 |
Package Last Update: | 2014-06-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-11 15:09:53 |
Package Statistics | |
---|---|
Total Downloads: | 343 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 3 |
Total Open Issues: | 1 |
A File Authentication Driver for Laravel.
As usual, install this package through Composer.
"require": {
"lucor/laravel-auth-file-driver": "0.9.*"
}
Add the service provider in app/config/app.php
in the providers
section:
'providers' => array(
...
'Lucor\Auth\AuthServiceProvider',
)
Change the default driver in app/config/auth.php
:
'driver' => 'file',
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
.
This package is released under the MIT License. See the LICENSE file for details.