Tiny/Routing - it's a layer between the outside world like a browser or a console command CLI
and your application. The package may be integrated to any existing php
project and it does not require any
extra packages.
Usually routing contains of two main parts:
-
Routes
- which describe a meta information like - aquery
, a querytype
, and a responsiblecontroller
which processes all incoming requests. -
A
Router
- just holds registered routes and matches incoming requests with registered routes.
So it just returns either a matched route or trigger anException
when a route is not found.
Current implementation of routing is very simple but in the same time very powerful. It gets you
a possibility to work with it using a plain requests (literal
) and Regexp based requests,
also it supports filtering requests by http requests types like: GET
, POST
, etc.
Also you can use it as a routing for you CLI
projects.
So let's check a look an http routing example:
// create an instance of the router
$router = new Router(new RequestHttpParams($_SERVER));
// a literal `home` route
$router->registerRoute(new Route(
'/',
'HomeController',
'index'
));
// a literal `users` route which accepts only `GET` and `POST` requests
$router->registerRoute(new Route(
'/users',
'UserController',
// list of actions
[
'GET' => 'list',
'POST' => 'create'
]
));
// a more complex example using a `RegExp` rule
$router->registerRoute(new Route(
'|^/users/(?P<id>\d+)$|i', // it's matches to: `/users/1`, `/users/300`, etc
'UserController',
[
'GET' => 'view',
'DELETE' => 'delete',
],
'regexp',
['id']
));
// now get a matched route
$matchedRoutes = $router->getMatchedRoute();
Run the following to install this library:
$ composer require esase/tiny-router
https://tiny-docs.readthedocs.io/en/latest/tiny-router/docs/index.html