laravel-auth maintained by analogue
Description
AnalogueORM Authentication Driver for Laravel 5
Author
Last update
2018/02/08 11:05
(5.6.x-dev)
License
Downloads
627
Last update
2018/02/08 11:05
License
Require
- php >=7.0
- illuminate/support 5.5.*|5.6.*
- analogue/orm 5.5.*|5.6.*
Last update
2018/02/08 11:05
License
Require
- php >=7.0
- illuminate/support 5.5.*|5.6.*
- analogue/orm 5.5.*|5.6.*
Last update
2017/08/31 11:09
License
Require
- php >=5.6.4
- illuminate/support 5.4.*|5.5.*
- analogue/orm 5.4.*|5.5.*
Last update
2017/08/31 11:09
License
Require
- php >=5.6.4
- illuminate/support 5.4.*|5.5.*
- analogue/orm 5.4.*|5.5.*
Last update
2017/08/31 11:09
License
Require
- php >=5.6.4
- illuminate/support 5.4.*|5.5.*
- analogue/orm 5.4.*|5.5.*
Last update
2017/02/10 18:00
License
Require
- php >=5.5.0
- illuminate/support ~5.4.0
- analogue/orm dev-master
Last update
2017/02/10 17:45
License
Require
- php >=5.5.0
- illuminate/support ~5.3.0
- analogue/orm ~5.3.0
Last update
2017/02/10 17:45
License
Require
- php >=5.5.0
- illuminate/support ~5.3.0
- analogue/orm ~5.3.0
Last update
2016/04/28 09:44
License
Require
- php >=5.5.0
- illuminate/support ~5.2
- analogue/orm ~5.2
Last update
2016/04/28 09:44
License
Require
- php >=5.5.0
- illuminate/support ~5.2
- analogue/orm ~5.2
Last update
2016/02/19 08:49
License
Require
- php >=5.5.0
- illuminate/support ~5.2
- analogue/orm ~5.2
Last update
2016/02/01 16:55
License
Require
- php >=5.5.0
- illuminate/support ~5.2
- analogue/orm ~5.2
Last update
2016/02/01 16:53
License
Require
- php >=5.5.0
- illuminate/support ~5.1
- analogue/orm ~5.1
Last update
2015/09/22 18:50
License
Require
- php >=5.5.0
- illuminate/support ~5.1
- analogue/orm ~5.1
Last update
2015/09/22 18:50
License
Require
- php >=5.5.0
- illuminate/support ~5.1
- analogue/orm ~5.1
Last update
2015/09/17 12:56
License
Require
- php >=5.5.0
- illuminate/support ~5.1
- analogue/orm ~5.1
Last update
2015/09/06 23:15
License
Require
- php >=5.5.0
- illuminate/support ~5.1
- analogue/orm ~5.1
Last update
2015/09/06 23:13
License
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~5.0
Last update
2015/09/06 23:13
License
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~5.0
Last update
2015/05/06 09:17
License
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/05/06 09:17
License
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/03/27 14:24
License
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/03/27 14:23
License
Require
- php >=5.4.0
- illuminate/support 4.2.*
- analogue/orm ~1.0
Last update
2015/03/27 14:21
Require
- php >=5.4.0
- illuminate/support 4.2.*
- analogue/orm ~1.0
Last update
2015/03/27 14:19
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/03/27 13:49
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/03/02 11:12
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Last update
2015/03/02 09:51
Require
- php >=5.4.0
- illuminate/support ~5.0
- analogue/orm ~2.0
Analogue ORM - Laravel Authentication Driver
This package is an out-of-the-box Analogue authentication driver for Laravel 5. It replaces the Eloquent Model with an Analogue Entity, while using the default database structure found in the default laravel install.
Installation
composer require "analogue/laravel-auth"
Configuration
Add this line to the Service Providers in config/app.php :
Analogue\LaravelAuth\AnalogueAuthServiceProvider::class,
Then, in auth.php
Add a analogue provider right after the users provider. Of course, you can change the model to your own domain class.
config/auth.php :
'providers' => [
'analogue' => [
'driver' => 'analogue',
'model' => Analogue\LaravelAuth\User::class,
],
Then, change the providers used to authenticate in the guards section :
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'analogue',
],
'api' => [
'driver' => 'token',
'provider' => 'users',
],
],
Licence
MIT