mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 20:22:07 +00:00
22 lines
557 B
PHP
22 lines
557 B
PHP
![]() |
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| 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: "native", "cookie", "database", "apc",
|
||
|
| "memcached", "redis", "array"
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'driver' => 'array',
|
||
|
|
||
|
);
|