dhazelett / stack-whoops
Stack Middleware for Whoops, the cool kids error handler.
v1.0.2
2015-01-24 11:22 UTC
Requires (Dev)
- filp/whoops: ~1.1
- silex/silex: ~1.2
- symfony/http-foundation: ~2.1
- symfony/http-kernel: ~2.1
This package is not auto-updated.
Last update: 2024-12-21 19:18:38 UTC
README
Stack Middleware for Whoops, the cool kids error handler.
Warning!
This Middleware has no tests. I really just wanted a middleware for whoops+stack. feel free to send a PR with tests if it's that important
Usage
use Silex\Application; use Stack\Builder; require_once '../app/config/bootstrap.php'; $app = new Application($config); $stack = (new Builder) ->push('Saphire\Middleware\Whoops', [ // STRING! name of the \Whoops\Handler\* to use 'handler' => '\Whoops\Handler\PrettyPageHandler' ]) ; // Try it out $app->get('/', function() { throw new \Exception('Oh No!'); }); $server = $stack->resolve($app); $response = $server->handle($request)->send(); $server->terminate($request, $response);