13 lines
226 B
PHP
13 lines
226 B
PHP
|
<?php
|
||
|
return [
|
||
|
'collection' => [
|
||
|
'type' => 'sqlite',
|
||
|
'host' => '',
|
||
|
'user' => '',
|
||
|
'pass' => '',
|
||
|
'port' => '',
|
||
|
'name' => 'default',
|
||
|
'database' => '',
|
||
|
'file' => __DIR__ . '/../../anime_collection.sqlite',
|
||
|
]
|
||
|
];
|