| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | 
							- <?php
 
- return array(
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Driver
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| The name of the session driver for your application.
 
- 	|
 
- 	| Since HTTP is stateless, sessions are used to maintain "state" across
 
- 	| multiple requests from the same user of your application.
 
- 	|
 
- 	| Supported Drivers: 'file', 'db', 'memcached', 'apc'.
 
- 	|
 
- 	*/
 
- 	'driver' => '',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Database
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| The database table on which the session should be stored. 
 
- 	|
 
- 	| If you are not using database based sessions, don't worry about this.
 
- 	|
 
- 	*/
 
- 	'table' => 'sessions',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Lifetime
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| How many minutes can a session be idle before expiring?
 
- 	|
 
- 	*/
 
- 	'lifetime' => 60,
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Expiration On Close
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Should the session expire when the user's web browser closes?
 
- 	|
 
- 	*/
 
- 	'expire_on_close' => false,
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Cookie Path
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| The path for which the session cookie is available.
 
- 	|
 
- 	*/
 
- 	'path' => '/',
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Cookie Domain
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| The domain for which the session cookie is available.
 
- 	|
 
- 	*/
 
- 	'domain' => null,
 
- 	/*
 
- 	|--------------------------------------------------------------------------
 
- 	| Session Cookie HTTPS
 
- 	|--------------------------------------------------------------------------
 
- 	|
 
- 	| Should the session cookie only be transported over HTTPS?
 
- 	|
 
- 	*/
 
- 	'https' => false,
 
- );
 
 
  |