mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
13 lines
276 B
PHP
13 lines
276 B
PHP
<?php
|
|
|
|
return [
|
|
'driver' => 'file',
|
|
'path' => storage_path() . '/cache',
|
|
'connection' => null,
|
|
'table' => 'cache',
|
|
'memcached' => [
|
|
['host' => '127.0.0.1', 'port' => 11211, 'weight' => 100],
|
|
],
|
|
'prefix' => 'laravel',
|
|
];
|