From 7b892e2452006a9cc0c750f09cd55274ae036d06 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 23 Dec 2014 16:18:38 -0600 Subject: [PATCH] Allow session encryption. --- config/session.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/config/session.php b/config/session.php index 10caef86..38e01099 100644 --- a/config/session.php +++ b/config/session.php @@ -33,6 +33,19 @@ 'expire_on_close' => false, + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + /* |-------------------------------------------------------------------------- | Session File Location