Package Data | |
---|---|
Maintainer Username: | cedricve |
Maintainer Contact: | hello@cedric.ws (Cédric Verstraeten) |
Package Create Date: | 2014-12-10 |
Package Last Update: | 2017-06-19 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:00:17 |
Package Statistics | |
---|---|
Total Downloads: | 12,094 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 3 |
Total Open Issues: | 0 |
A simple authentication driver, which makes it possible to define one or more users in the app.config file. This is great for mockup projects or when you don't have/need a database. This library extends the original Laravel auth drivers, so it uses exactly the same methods.
Install using composer:
composer require cedricve/simpleauth
Add the service provider in app/config/app.php
:
'Cedricve\Simpleauth\SimpleauthServiceProvider',
The service provider will register a extension with the original auth manager. There is no need to register additional facades or objects.
Change your default database connection name in app/config/auth.php
:
'driver' => 'simple'
And add a new property to the app/config/app.php
file:
'users' => [
[
"id" => 1,
"username" => "root",
"password" => "root",
"firstname" => "Cédric",
"secondname" => "Verstraeten"
...
],
[
"id" => 2,
"username" => "root2",
"password" => "root",
"firstname" => "Cédric",
"secondname" => "Verstraeten"
...
]
],
You can use the default Auth methods.
Try to signin
Auth::attempt(['username' => 'root', 'password' => 'root'))
Retrieving the user that signed in
$user = Auth::user();
More info about authentication: http://laravel.com/docs/4.2/security