From 0c0b68e3957a42ac4b6ce551e850647ae3dbeae7 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 13 Mar 2013 20:12:34 -0500 Subject: [PATCH] Added payload configuration option. --- app/config/session.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/config/session.php b/app/config/session.php index 910591e2..fbd506e9 100644 --- a/app/config/session.php +++ b/app/config/session.php @@ -122,4 +122,17 @@ return array( 'domain' => null, + /* + |-------------------------------------------------------------------------- + | Session Payload Cookie Name + |-------------------------------------------------------------------------- + | + | When using the "cookie" session driver, you may configure the name of + | the cookie used as the session "payload". This cookie actually has + | the encrypted session data stored within it for the application. + | + */ + + 'payload' => 'laravel_payload', + );