session.php 552 Bytes
Newer Older
1 2
<?php

3
return [
4 5 6 7 8 9 10

	/*
	|--------------------------------------------------------------------------
	| Default Session Driver
	|--------------------------------------------------------------------------
	|
	| This option controls the default session "driver" that will be used on
11
	| requests. By default, we will use the lightweight native driver but
12 13
	| you may specify any of the other wonderful drivers provided here.
	|
14
	| Supported: "native", "cookie", "database", "apc",
15 16 17 18 19 20
	|            "memcached", "redis", "array"
	|
	*/

	'driver' => 'array',

21
];