PHP code example of movisio / lazy-router
1. Go to this page and download the library: Download movisio/lazy-router library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
movisio / lazy-router example snippets
$router = new LazyRouteList($cache);
$router->setLazyCachedRoutes(function (&$dependencies) : array {
// .... read routes from files or whatever ...
$routes = [
new \Nette\Routing\Route('/api/v1/route/to/resource', 'Module:ApiPresenter:action')
];
// optional cache dependency for automatic cache invalidation and routes reloading
$dependencies[\Nette\Caching\Cache::FILES] = ['path/to/file', 'path/to/another/file'];
return $routes;
});