Skip to content

HTTP Handlers

HTTP handlers implemented as middleware for most common application needs.


The HTTP Handlers package provides a series of handlers implemented as middleware that almost every modern application will need. It provides lazy and In-memory middleware pipelines, as well as a routing engine.

Installation

Add the Castor repository to your composer.json.

{
"repositories": [{
"type": "composer",
"url": "https://castor-labs.github.io/php-packages"
}]
}

And then install with composer.

Terminal window
composer require castor/http-handlers

Motivation