bjoern-tantau / http-server-handler

Interface for PSR-15 server request handler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTTP Server Handler

Deprecation warning!

Starting January 22nd, 2018 http-interop is officially deprecated in favor of PSR-15.

From v1.1, this package directly extends PSR-15 interfaces to provide backwards compatibility and should no longer be added to new projects.

Please switch to psr/http-server-handler as soon as possible.

Changes Required

There are two changes required to use the official psr/http-server-handler package:

Update Composer

Replace the line in composer.json that reads:

{
    "require": {
        "http-interop/http-server-handler": "^1.0"
    }
}

with:

{
    "require": {
        "psr/http-server-handler": "^1.0"
    }
}

Update Code

Replace any references to:

use Interop\Http\Server\RequestHandlerInterface;

with:

use Psr\Http\Server\RequestHandlerInterface;`

About

Interface for PSR-15 server request handler

License:MIT License


Languages

Language:PHP 100.0%