Skip to content

Instantly share code, notes, and snippets.

@jl91
Created February 2, 2016 21:45
Show Gist options
  • Save jl91/f219135b72410b98b377 to your computer and use it in GitHub Desktop.
Save jl91/f219135b72410b98b377 to your computer and use it in GitHub Desktop.
Whoops.local.php
<?php
return [
'dependencies' => [
'invokables' => [
'Zend\Expressive\Whoops' => Whoops\Run::class,
'Zend\Expressive\WhoopsPageHandler' => Whoops\Handler\PrettyPageHandler::class,
],
'factories' => [
'Zend\Expressive\FinalHandler' => Zend\Expressive\Container\WhoopsErrorHandlerFactory::class,
],
],
'whoops' => [
'json_exceptions' => [
'display' => true,
'show_trace' => true,
'ajax_only' => false,
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment