Download the PHP package hengeb/router without Composer
On this page you can find all versions of the php package hengeb/router. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hengeb/router
More information about hengeb/router
Files in hengeb/router
Package router
Short Description a PHP router that makes use of attributes
License MIT
Informations about the package router
Hengeb\Router
a PHP router that makes use of attributes and provides autowiring
example usage
Make sure your HTTP server redirects alle requests to index.php
(the front controller).
example nginx directive:
In index.php
, create the Router object and dispatch the request:
The router will look for a controller with a Route attribute that matches the router. The router will cache the routes and only re-analyze the controllers when a file has changed.
Model injection
You can tell the Router object how to retrieve an object of a given type:
The third parameter is optional. Use it if there are multiple ways to find the target.
Alternatively your model can implement the RetrievabelModel interface that is part of this package.
Request value injection
You can use the RequestValue
attribute to inject a request value (POST or PUT).
Service injection
You can tell the Router how to retrieve a service object:
Or using a closure so objects will only be created when they are needed:
Or the Router object will try to find the service automatically, either by calling $className::getInstance()
or by creating a new object (with service injection in the constructor, be careful so you don't end up in endless recursion)
Exception handling
If something goes wrong a default error page will be shown with a short description of the error and the according HTTP status code.
You can add a method handleException(\Exception $e, ...)
(other dependcies will be injected) to your controller to handle the exception.
However, this will not work if no controller could be determined because no route matches request. To cover this case you can add a custom exception handler:
The class will be created with service injection.
Alternatively you can use a closure: