PHP code example of dlundgren / pipeware

1. Go to this page and download the library: Download dlundgren/pipeware 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/ */

    

dlundgren / pipeware example snippets


$stack = new \Pipeware\Stack(
	new \Pipeware\Containerized($container), // any psr-11 compatible container
	new \Pipeware\Processor()
);

// append your responder
$stack->append(new Responder());

// append your error handler
$stack->append(new ErrorHandler());

// have the stack handle your request
$response = $stack->handle($request);

// do something with your response if needed