1. Go to this page and download the library: Download componenta/pipeline 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/ */
componenta / pipeline example snippets
use Componenta\Http\Middleware\Pipeline;
$pipeline = new Pipeline(
[$errorMiddleware, $authMiddleware, $routerMiddleware],
fallbackHandler: $notFoundHandler,
);
$response = $pipeline->handle($request);
$api = new Pipeline([$apiAuth, $apiRouter]);
$web = new Pipeline([$sessionMiddleware, $webRouter]);
$app = new Pipeline([$errorMiddleware], $notFoundHandler)
->pipe($api)
->pipe($web);