diff --git a/config/database.php b/config/database.php index 4e8f09d0..f379bbc2 100644 --- a/config/database.php +++ b/config/database.php @@ -78,11 +78,6 @@ return [ 'schema' => 'public', ], - 'dummy' => [ - 'driver' => 'sqlite', - 'database' => '', - ], - ], /* diff --git a/config/logging.php b/config/logging.php index 3f9d466d..3d4279c4 100644 --- a/config/logging.php +++ b/config/logging.php @@ -32,7 +32,8 @@ return [ 'channels' => [ 'stack' => [ 'driver' => 'stack', - 'channels' => ['single'], + 'channels' => ['daily'], + 'ignore_exceptions' => false, ], 'single' => [ diff --git a/config/secure.php b/config/secure.php index d6ea3486..cf44729f 100644 --- a/config/secure.php +++ b/config/secure.php @@ -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', ''), ];