Example #1
0
<?php

require '../vendor/autoload.php';
// Get URI object.
$uri = Zend\Diactoros\ServerRequestFactory::fromGlobals()->getUri();
// Setup DebugBar
$debugbar = new DebugBar\StandardDebugBar();
$debugbar->getJavascriptRenderer()->setBaseUrl($uri->withPort('8000')->withPath('/'));
// Setting up the stack off middlewares.
$handler = GuzzleHttp\HandlerStack::create();
$middleware = new GuzzleHttp\Profiling\Middleware(new GuzzleHttp\Profiling\Debugbar\Profiler($debugbar->getCollector('time')));
$handler->unshift($middleware);
$handler->unshift(Demo1\GithubAuth::create());
// Boot application.
$controller = new Demo6\Controller(new GuzzleHttp\Client(compact('handler')), $debugbar->getJavascriptRenderer());
// Let application do the magic.
$response = $controller->index();
// Output Response.
(new Zend\Diactoros\Response\SapiEmitter())->emit($response);
Example #2
0
<?php

require '../vendor/autoload.php';
$handler = GuzzleHttp\HandlerStack::create();
$handler->push(Demo1\GithubAuth::create());
// Boot application.
$controller = new Demo3\Controller(new GuzzleHttp\Client(compact('handler')));
// Let application do the magic.
$response = $controller->index();
// Output Response.
(new Zend\Diactoros\Response\SapiEmitter())->emit($response);