We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
yiisoft/request-provider
1 parent b546690 commit 96f2493Copy full SHA for 96f2493
2 files changed
composer.json
@@ -61,6 +61,7 @@
61
"yiisoft/log-target-file": "^3.0",
62
"yiisoft/middleware-dispatcher": "^5.2",
63
"yiisoft/request-body-parser": "^1.1",
64
+ "yiisoft/request-provider": "^1.2",
65
"yiisoft/router": "^4.0",
66
"yiisoft/router-fastroute": "^4.0.1",
67
"yiisoft/validator": "^1.4.1",
config/web/params.php
@@ -3,6 +3,7 @@
3
declare(strict_types=1);
4
5
use Yiisoft\ErrorHandler\Middleware\ErrorCatcher;
6
+use Yiisoft\RequestProvider\RequestCatcherMiddleware;
7
use Yiisoft\Router\Middleware\Router;
8
use Yiisoft\Yii\Middleware\Subfolder;
9
@@ -14,6 +15,7 @@
14
15
],
16
17
'middlewares' => [
18
+ RequestCatcherMiddleware::class,
19
ErrorCatcher::class,
20
Subfolder::class,
21
Router::class,
0 commit comments