Skip to content
This repository was archived by the owner on Jun 27, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 408 Bytes

File metadata and controls

21 lines (14 loc) · 408 Bytes

Traba, the Traversal Router

Traba is a traversal router. It is licensed under a ISC license.

The simplest example:

use Guide42\Traba\Router;

$router = new Router(array());
$router->addRoute('view_home', null, '');

list($controller, $resource) = $router->match(array());

Documentation