2020-09-27 13:47:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2020-10-03 14:38:19 +00:00
|
|
|
'base_url' => 'http://localhost',
|
2020-09-27 13:47:19 +00:00
|
|
|
'debug' => true,
|
|
|
|
'db' =>
|
|
|
|
[
|
|
|
|
'connection' => 'sqlite',
|
|
|
|
'dsn' => ':memory:',
|
|
|
|
],
|
|
|
|
'storage' =>
|
|
|
|
[
|
|
|
|
'driver' => 'local',
|
|
|
|
'path' => 'storage/test',
|
|
|
|
],
|
2020-09-27 13:47:33 +00:00
|
|
|
];
|