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