PHP code example of api-clients / middleware

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

    

api-clients / middleware example snippets


    $container = /* ... */;
    $locator = new ContainerLocator($container);
    $middlewares = [];
    
    $config = [
        'middlewares' => [/*...*/]
        'options' => [/*...*/]
    ];
       
    foreach ($config['middlewares'] as $middleware) {
       $middlewares[] = $locator->get($middleware);
    }
    
    $runner = new MiddlewareRunner($config['options'], $middelwares);
    
    $runner->pre($request)->then(function ($request) use ($options) {
        return resolve($this->browser->send(
            $request
        ));
    }, function (ResponseInterface $response) {
        return resolve($response);
    })->then(function (ResponseInterface $response) use ($runner) {
        return $runner->post($response);
    })->otherwise(function (Throwable $throwable) use ($runner) {
        return reject($runner->error($throwable));
    });