mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
12 lines
215 B
PHP
12 lines
215 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'cache-prefix' => '',
|
||
|
|
||
|
'enabled' => env('MODEL_CACHE_ENABLED', true),
|
||
|
|
||
|
'use-database-keying' => env('MODEL_CACHE_USE_DATABASE_KEYING', true),
|
||
|
|
||
|
'store' => env('MODEL_CACHE_STORE'),
|
||
|
];
|