summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-09-15 17:24:59 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-09-16 14:56:07 +0200
commit104e4f4c437376eb739dd3ef2de603855947a557 (patch)
treeb28f33e6d2fbb2aad5af074d2eb1d2e02148c6cd /config/config.default.php
parentedeab5e75ffa02b075c151ca03ea1038f61e4396 (diff)
Session: Added Symfony PDO backend
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.default.php b/config/config.default.php
index a634c28c..e085d307 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -137,4 +137,13 @@ return [
'3XL' => '3XL',
'4XL' => '4XL'
],
+
+ // Session config
+ 'session' => [
+ // Supported: pdo or native
+ 'driver' => env('SESSION_DRIVER', 'pdo'),
+
+ // Cookie name
+ 'name' => 'session',
+ ],
];