#107 - bump laravel (#111)

This commit is contained in:
Adrian Hopek
2022-04-07 08:45:04 +02:00
committed by GitHub
parent 6af4380fe6
commit 84403a762a
6 changed files with 69 additions and 69 deletions

View File

@@ -5,7 +5,7 @@ declare(strict_types=1);
use Illuminate\Support\Str;
return [
"default" => env("CACHE_DRIVER", "file"),
"default" => env("CACHE_DRIVER", "redis"),
"stores" => [
"array" => [
"driver" => "array",

View File

@@ -5,7 +5,7 @@ declare(strict_types=1);
use Illuminate\Support\Str;
return [
"default" => env("DB_CONNECTION", "mysql"),
"default" => env("DB_CONNECTION", "pgsql"),
"connections" => [
"pgsql" => [
"driver" => "pgsql",

View File

@@ -3,7 +3,7 @@
declare(strict_types=1);
return [
"default" => env("QUEUE_CONNECTION", "sync"),
"default" => env("QUEUE_CONNECTION", "redis"),
"connections" => [
"sync" => [
"driver" => "sync",

View File

@@ -5,7 +5,7 @@ declare(strict_types=1);
use Illuminate\Support\Str;
return [
"driver" => env("SESSION_DRIVER", "file"),
"driver" => env("SESSION_DRIVER", "redis"),
"lifetime" => env("SESSION_LIFETIME", 120),
"expire_on_close" => false,
"encrypt" => false,