* #1 - project skeleton * #1 - composer fix * #1 - add app key to phpunit config * #1 - change default session driver * #1 - add EXTERNAL_WEBSERVER_PORT variable to .env.example
This commit is contained in:
31
config/auth.php
Normal file
31
config/auth.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"defaults" => [
|
||||
"guard" => "web",
|
||||
"passwords" => "users",
|
||||
],
|
||||
"guards" => [
|
||||
"web" => [
|
||||
"driver" => "session",
|
||||
"provider" => "users",
|
||||
],
|
||||
],
|
||||
"providers" => [
|
||||
"users" => [
|
||||
"driver" => "eloquent",
|
||||
"model" => Toby\Models\User::class,
|
||||
],
|
||||
],
|
||||
"passwords" => [
|
||||
"users" => [
|
||||
"provider" => "users",
|
||||
"table" => "password_resets",
|
||||
"expire" => 60,
|
||||
"throttle" => 60,
|
||||
],
|
||||
],
|
||||
"password_timeout" => 10800,
|
||||
];
|
Reference in New Issue
Block a user