http-interop / http-server-middleware
Common interface for HTTP server-side middleware
Installs: 241 533
Dependents: 10
Suggesters: 0
Security: 0
Stars: 22
Watchers: 13
Forks: 2
Open Issues: 0
Requires
- php: >=7.0
- psr/http-message: ^1.0
- psr/http-server-middleware: ^1.0
Replaces
- http-interop/http-middleware: >=0.5
This package is auto-updated.
Last update: 2022-02-01 13:10:58 UTC
README
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-middleware
as soon as possible.
Version Constraint Warning
To continue using this package for backwards compatibility, use the following version constraint to avoid a type error:
{ "require": { "http-interop/http-server-middleware": "^1.1.1" } }
See issue #6 for details.
Changes Required
There are two changes required to use the official psr/http-server-middleware
package:
Update Composer
Replace the line in composer.json
that reads:
{ "require": { "http-interop/http-server-middleware": "^1.0" } }
with:
{ "require": { "psr/http-server-middleware": "^1.0" } }
Update Code
Replace any references to:
use Interop\Http\Server\MiddlewareInterface;
with:
use Psr\Http\Server\MiddlewareInterface;