firefly-iii/app/config/testing/database.php
2015-01-02 06:16:49 +01:00

13 lines
251 B
PHP

<?php
return [
'default' => 'sqlite',
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => realpath(__DIR__.'/../../../tests/_data/db.sqlite'),
'prefix' => ''
]
]
];