talentrydev/error-handling-bundle

Symfony bundle for converting PHP errors to exceptions

Installs: 6 609

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

pkg:composer/talentrydev/error-handling-bundle

4.1.1 2025-08-18 10:08 UTC

This package is auto-updated.

Last update: 2025-09-18 10:24:59 UTC


README

This Symfony bundle encapsulates the error-handling library. Compatible with Symfony versions 3 and 4.

Installing and configuring the symfony bundle

  • Run:
composer require talentrydev/error-handling-bundle
  • Add the ErrorHandlingBundle to your kernel's registerBundles method:
return [
    //...
    new \Talentry\ErrorHandlingBundle\ErrorHandlingBundle();
];
  • Configure the bundle to automatically start error handling on kernel.request and console.command events:
error_handling:
    auto_start: true