mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
13 lines
251 B
PHP
13 lines
251 B
PHP
<?php
|
|
return [
|
|
'default' => 'sqlite',
|
|
'connections' => [
|
|
'sqlite' => [
|
|
'driver' => 'sqlite',
|
|
'database' => realpath(__DIR__.'/../../../tests/_data/db.sqlite'),
|
|
'prefix' => ''
|
|
]
|
|
|
|
]
|
|
];
|