jowy/exception-handling-middleware
最新稳定版本:v1.0
Composer 安装命令:
composer require jowy/exception-handling-middleware
包简介
PSR7 Http Exception Handling Middleware
README 文档
README
PSR 7 error handling middleware
Intallation & Requirements
Install using composer
$ composer require jowy/error-handling-middleware
This library has following dependencies:
zendframework/zend-diactoros, used for PSR 7 implementationzendframework/zend-stratigility, provide abstraction for PSR 7 middlewareflip/whoops, used for error formattingpsr/log, provide abstration for logging
This library has conflict with following library:
symfony/http-kernel, because this library has already usedSymfony\Component\HttpKernel\Exception, despite require wholesymfony/http-kernelpackage it only require the exception class
Usage
Usage on zendframework/zend-stratigility
use Zend\Stratigility\MiddlewarePipe; use Jowy\ExceptionHandler\ExceptionHandler; $app = new MiddlewarePipe(); $route_middleware = new ExceptionHandler($whoops_output_handler, $psr3_logger, $catch); $app->pipe($route_middleware);
Usage on relay\relay
use Pimple\Container; use Relay\Relay; use Jowy\ExceptionHandler\ExceptionHandler; $container = new Container(); $container["middleware"] = [ ExceptionHandler::class => function() { return new ExceptionHandler($whoops_output_handler, $psr3_logger, $catch); } ]; $resolver = function ($class) use ($container) { return $container[$class]; } new Relay(array_keys($container["middleware"], $resolver);
API
use Psr\Log\LoggerInterface; use Whoops\Handler\HandlerInterface; class ExceptionHandler { public function __construct(HandlerInterface $error_handler, LoggerInterface $logger, $catch = true); }
License
MIT, see LICENSE.
统计信息
- 总下载量: 70
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-06-22