Browse Source

Added payload configuration option.

Taylor Otwell 11 years ago
parent
commit
0c0b68e395
1 changed files with 13 additions and 0 deletions
  1. 13 0
      app/config/session.php

+ 13 - 0
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',
+
 );