Tweak config

This commit is contained in:
Pig Fang 2019-09-07 13:01:44 +08:00
parent f9f2796529
commit 7c0bf46c3c
3 changed files with 3 additions and 7 deletions

View File

@ -78,11 +78,6 @@ return [
'schema' => 'public',
],
'dummy' => [
'driver' => 'sqlite',
'database' => '',
],
],
/*

View File

@ -32,7 +32,8 @@ return [
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['single'],
'channels' => ['daily'],
'ignore_exceptions' => false,
],
'single' => [

View File

@ -9,6 +9,6 @@ return [
| Load them from env to config, preventing cache problems
|
*/
'cipher' => env('PWD_METHOD', 'SALTED2MD5'),
'cipher' => env('PWD_METHOD', 'BCRYPT'),
'salt' => env('SALT', ''),
];