lucor / laravel-auth-file-driver by lucor

A File Authentication Driver for Laravel
341
5
2
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-04-23 03:00:10
Package Statistics
Total Downloads: 341
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 5
Total Watchers: 2
Total Forks: 3
Total Open Issues: 1

File authentication driver for Laravel

A File Authentication Driver for Laravel.

Total Downloads Latest Stable Version Build Status

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.