router.global.php 323 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. use Mezzio\Router\FastRouteRouter;
  4. return [
  5. 'router' => [
  6. 'base_path' => '',
  7. 'fastroute' => [
  8. FastRouteRouter::CONFIG_CACHE_ENABLED => true,
  9. FastRouteRouter::CONFIG_CACHE_FILE => 'data/cache/fastroute_cached_routes.php',
  10. ],
  11. ],
  12. ];