<?php

return [

    /* Supported: "file", "cookie", "database", "apc", "memcached", "redis", "array" */
    'driver' => env('CACHE_DRIVER'),

	/* Session Database Table */
	'table' => 'sessions',

    'lifetime' => 3600,
    'expire_on_close' => false,

	/* Session Encryption */
    'encrypt' => false,

    /* Session File Location */
    'files' => storage_path('framework/sessions'),

    /* Session Database Connection */

    'connection' => null,

    /* Session Cache Store
    	When using the "apc" or "memcached" session drivers, you may specify a cache store that should be used for these sessions. This value must correspond with one of the application's configured cache stores.
    */

    'store' => null,

    /* Session Sweeping Lottery
        Some session drivers must manually sweep their storage location to get rid of old sessions from storage. Here are the chances that it will happen on a given request. By default, the odds are 2 out of 100.
    */
    'lottery' => [2, 100],

    /* Session Cookie Name */
    'cookie' => 'timehooksession',

    /* Session Cookie Path */
    'path' => '/',

    /* Session Cookie Domain */
    'domain' => null,

    /* HTTPS Only Cookies */
    'secure' => env('SESSION_SECURE_COOKIE', false),

    /* HTTP Access Only  */

    'http_only' => true,

    /* Same-Site Cookies
		This option determines how your cookies behave when cross-site requests take place, and can be used to mitigate CSRF attacks. By default, we do not enable this as other CSRF protection services are in place.
		Supported: "lax", "strict"
    */

    'same_site' => null,

];
