Download the PHP package idiosyncratic/http-router without Composer
On this page you can find all versions of the php package idiosyncratic/http-router. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download idiosyncratic/http-router
More information about idiosyncratic/http-router
Files in idiosyncratic/http-router
Package http-router
Short Description A lightweight PSR-15 based HTTP router implementation
License ISC
Informations about the package http-router
The Idiosyncratic Router
A lightweight PSR-15 HTTP router implementation.
Installation
Use Composer:
Usage
Idiosyncratic\Http\Router\Router
implementing the PSR-15 Psr\Http\Server\RequestHandlerInterface
is the main class. It has two dependencies:
-
An implementation of
Idiosyncratic\Http\Router\RouteCollection
, a collection of routes implementing a single method: Psr\Container\ContainerInterface
, responsible for retrieving the handler for the matched route.
Also included is Idiosyncratic\Http\Router\RouteGroup
, a basic implementation of the RouteCollection
interface based on FastRoute. The interface for defining routes is nearly identical to FastRoute's, with two notable exceptions:
- The argument order for
RouteGroup::addRoute
is different. Route methods are defined last as string parameters. - The route handler must be the name of a class implementing
Psr\Http\Server\RequestHandlerInterface
.
Basic usage of the library (using the PHP League Container):
All versions of http-router with dependencies
idiosyncratic/http-exceptions Version ^0.9
psr/container Version ^1.0
psr/http-message Version ^1.0
psr/http-server-handler Version ^1.0