2017-01-22 04:07:18 -06:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2017-10-12 03:13:20 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-01-01 14:11:53 -06:00
|
|
|
use Mezzio\Router\FastRouteRouter;
|
2017-01-22 04:07:18 -06:00
|
|
|
|
2022-01-04 10:50:41 -06:00
|
|
|
use function Shlinkio\Shlink\Config\env;
|
2021-08-07 04:05:20 -05:00
|
|
|
|
2017-01-22 04:07:18 -06:00
|
|
|
return [
|
|
|
|
|
|
|
|
'router' => [
|
2021-08-07 04:05:20 -05:00
|
|
|
'base_path' => env('BASE_PATH', ''),
|
2019-09-13 13:03:53 -05:00
|
|
|
|
2017-01-22 04:07:18 -06:00
|
|
|
'fastroute' => [
|
|
|
|
FastRouteRouter::CONFIG_CACHE_ENABLED => true,
|
|
|
|
FastRouteRouter::CONFIG_CACHE_FILE => 'data/cache/fastroute_cached_routes.php',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|