PHP code example of phps-cans / psr7-middlewares-payload-universal-module
1. Go to this page and download the library: Download phps-cans/psr7-middlewares-payload-universal-module library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phps-cans / psr7-middlewares-payload-universal-module example snippets
$container->register(new \TheCodingMachine\MiddlewareListServiceProvider());
$container->register(new \Psr7Middlewares\Middleware\PayloadServiceProvider());
$app = $container->get(\Zend\Expressive\Application::class);
$middlewaresQueue = $container->get(\TheCodingMachine\MiddlewareListServiceProvider::MIDDLEWARES_QUEUE);
foreach ($middlewaresQueue as $middleware) {
$app->pipe($middleware);
}