lucor / laravel-auth-file-driver
A File Authentication Driver for Laravel
0.9.1
2014-06-18 09:56 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- illuminate/auth: >=4.1.26
- illuminate/support: >=4.1.26
- mockery/mockery: @stable
- phpunit/phpunit: @stable
This package is auto-updated.
Last update: 2024-10-29 04:36:19 UTC
README
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.