laravel/config/auth.php

108 lines
3.4 KiB
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2014-08-24 14:03:58 -05:00
return [
2013-01-11 15:14:07 -06:00
2015-02-22 20:47:03 -06:00
/*
|--------------------------------------------------------------------------
2015-12-03 22:08:12 -06:00
| Authentication Defaults
2015-02-22 20:47:03 -06:00
|--------------------------------------------------------------------------
|
2015-12-03 22:08:12 -06:00
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
2015-02-22 20:47:03 -06:00
|
2015-12-03 22:08:12 -06:00
*/
'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses "session" storage and the Eloquent user source.
2015-02-22 20:47:03 -06:00
|
2015-12-03 22:08:12 -06:00
| All authentication drivers have a user "source". This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
2015-02-22 20:47:03 -06:00
|
2015-12-14 16:37:16 -06:00
| Supported: "session", "token"
2015-02-22 20:47:03 -06:00
|
*/
2013-01-11 15:14:07 -06:00
2015-12-03 12:25:38 -06:00
'guards' => [
2015-12-03 17:10:09 -06:00
'web' => [
2015-12-03 12:25:38 -06:00
'driver' => 'session',
2015-12-03 22:08:12 -06:00
'source' => 'users',
2015-12-03 12:25:38 -06:00
],
2015-12-03 17:10:09 -06:00
2015-12-14 19:35:30 -06:00
'api' => [
'driver' => 'token',
'source' => 'users',
],
2015-12-03 12:25:38 -06:00
],
2013-01-11 15:14:07 -06:00
2015-02-22 20:47:03 -06:00
/*
|--------------------------------------------------------------------------
2015-12-03 22:08:12 -06:00
| User Sources
2015-02-22 20:47:03 -06:00
|--------------------------------------------------------------------------
|
2015-12-03 22:08:12 -06:00
| All authentication drivers have a user "source". This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
2015-12-03 12:25:38 -06:00
|
2015-12-03 22:26:09 -06:00
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
2015-12-03 12:25:38 -06:00
| Supported: "database", "eloquent"
2015-02-22 20:47:03 -06:00
|
*/
2013-01-11 15:14:07 -06:00
2015-12-03 22:08:12 -06:00
'sources' => [
'users' => [
2015-12-03 12:25:38 -06:00
'driver' => 'eloquent',
'model' => App\User::class,
],
2015-12-03 22:26:09 -06:00
// 'users' => [
2015-12-03 17:10:09 -06:00
// 'driver' => 'database',
// 'table' => 'users',
// ],
2015-12-03 12:25:38 -06:00
],
2013-01-11 15:14:07 -06:00
2015-02-22 20:47:03 -06:00
/*
|--------------------------------------------------------------------------
2015-12-03 22:08:12 -06:00
| Resetting Passwords
2015-02-22 20:47:03 -06:00
|--------------------------------------------------------------------------
|
| Here you may set the options for resetting passwords including the view
2015-12-03 22:08:12 -06:00
| that is your password reset e-mail. You may also set the name of the
2015-02-22 20:47:03 -06:00
| table that maintains all of the reset tokens for your application.
|
2015-12-03 22:26:09 -06:00
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| seperate password reset settings based on the specific user types.
2015-12-03 12:25:38 -06:00
|
2015-02-22 20:47:03 -06:00
| The expire time is the number of minutes that the reset token should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/
2013-01-30 22:42:27 -06:00
2015-12-03 22:08:12 -06:00
'passwords' => [
'users' => [
'source' => 'users',
2015-12-03 12:25:38 -06:00
'email' => 'emails.password',
'table' => 'password_resets',
'expire' => 60,
],
2015-02-22 20:47:03 -06:00
],
2013-01-30 22:42:27 -06:00
2014-08-24 14:03:58 -05:00
];