kovagoz / http-middleware-request-dispatcher
PSR-15 compatible request dispatcher
Requires
- php: ^7.4|^8.0
- psr/container: ^1.1|^2.0
- psr/http-server-middleware: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.4.0
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-03-29 01:13:39 UTC
README
The purpose of this middleware is to dispatch the request to the assigned handler, also known as the controller.
Requirements
- PHP 7.4 or above
Usage
Middleware needs a resolver object to be able to make the proper request handler object. It must be injected through the constructor. This package contains a simple resolver implementation which uses a PSR-11 compatible DI container to do the job:
$resolver = new ContainerResolver($container); $middleware = new RequestDispatcher($resolver);
Middleware looks for a special attribute of the request object called __handler. This attribute tells which handler should handle the request. If it's missing, nothing happens, request will be passed to the next middleware.
Here an example how you can tell which handler should handle the request:
// PSR-7 server request object $request = $request->withAttribute('__handler', MyController::class); $middleware->process($request, $nextMiddleware);