haikara/file-base-route

There is no license information available for the latest version (0.2.0) of this package.

0.2.0 2024-08-15 14:12 UTC

This package is auto-updated.

Last update: 2024-10-15 14:32:20 UTC


README

// Routerにルーティングファイルの設置場所を渡してインスタンス化
$router = new Router('./routes');

// サブディレクトリ運用の場合はプレフィックスとなるパスを渡す
$router->setBasePath('/sub');

$router->setActionInvoker(
    fn (Closure $action) => $container->call($action)
);

$response = $router->handle($request);