gmarche/vendor/zendframework/zend-expressive-router
nox a0fd572948 Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00
..
src Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00
CHANGELOG.md Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00
LICENSE.md Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00
README.md Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00
composer.json Premiere mouture application - Suppression fichiers inutiles 2019-09-18 00:31:59 +02:00

README.md

zend-expressive-router

Build Status Coverage Status

Router subcomponent for Expressive.

This package provides the following classes and interfaces:

  • RouterInterface, a generic interface to implement for providing routing capabilities around PSR-7 ServerRequest messages.
  • Route, a value object describing routed middleware.
  • RouteResult, a value object describing the results of routing.

Installation

Typically, you will install this when installing Expressive. However, it can be used standalone to provide a generic way to provide routed PSR-7 middleware. To do this, use:

$ composer require zendframework/zend-expressive-router

We currently support and provide the following routing integrations:

  • Aura.Router: composer require zendframework/zend-expressive-aurarouter
  • FastRoute: composer require zendframework/zend-expressive-fastroute
  • zend-router: composer require zendframework/zend-expressive-zendrouter

Documentation

Expressive provides routing documentation.