mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
return [
|
|
'default' => 'sqlite',
|
|
'connections' => [
|
|
'sqlite' => [
|
|
'driver' => 'sqlite',
|
|
'database' => ':memory:',
|
|
'prefix' => ''
|
|
]
|
|
|
|
]
|
|
];
|