mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
29 lines
687 B
Text
29 lines
687 B
Text
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Zend\Expressive\Container\WhoopsErrorResponseGeneratorFactory;
|
|
|
|
return [
|
|
'dependencies' => [
|
|
'invokables' => [
|
|
'Zend\Expressive\Whoops' => Whoops\Run::class,
|
|
'Zend\Expressive\WhoopsPageHandler' => Whoops\Handler\PrettyPageHandler::class,
|
|
],
|
|
],
|
|
|
|
'whoops' => [
|
|
'json_exceptions' => [
|
|
'display' => true,
|
|
'show_trace' => true,
|
|
'ajax_only' => true,
|
|
],
|
|
],
|
|
|
|
'error_handler' => [
|
|
'plugins' => [
|
|
'factories' => [
|
|
'text/html' => WhoopsErrorResponseGeneratorFactory::class,
|
|
],
|
|
],
|
|
],
|
|
];
|