21 lines
624 B
PHP
21 lines
624 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Session Driver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option controls the default session "driver" that will be used on
|
|
| requests. By default, we will use the lightweight native driver but
|
|
| you may specify any of the other wonderful drivers provided here.
|
|
|
|
|
| Supported: "file", "cookie", "database", "apc",
|
|
| "memcached", "redis", "dynamodb", "array"
|
|
|
|
|
*/
|
|
|
|
'items_count' => env('ITEMS_COUNT', 1000)
|
|
];
|