Skip to content

Commit 7463875

Browse files
committed
Added missing dependency on psr/http-message
1 parent 0772d66 commit 7463875

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"require": {
66
"php": "^7.4",
77
"psr/http-server-middleware": "^1.0",
8-
"psr/http-server-handler": "^1.0"
8+
"psr/http-server-handler": "^1.0",
9+
"psr/http-message": "^1.0"
910
},
1011
"autoload": {
1112
"psr-4": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/RequestHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace NanoMiddleware;
44

55
use OutOfRangeException;
6-
use Psr\Http\Message\ResponseFactoryInterface;
76
use Psr\Http\Message\ResponseInterface;
87
use Psr\Http\Message\ServerRequestInterface;
98
use Psr\Http\Server\MiddlewareInterface;

0 commit comments

Comments
 (0)