talentrydev/error-handling-bundle

将PHP错误转换为异常的Symfony包

4.0.0 2024-06-14 14:45 UTC

This package is auto-updated.

Last update: 2024-09-14 15:21:59 UTC


README

此Symfony包封装了错误处理库。与Symfony 3和4版本兼容。

安装和配置symfony包

  • 运行
composer require talentrydev/error-handling-bundle
  • 将ErrorHandlingBundle添加到内核的registerBundles方法中
return [
    //...
    new \Talentry\ErrorHandlingBundle\ErrorHandlingBundle();
];
  • 配置包以在kernel.request和console.command事件上自动启动错误处理
error_handling:
    auto_start: true