sblum / exception-enricher
Enriches exceptions with additional information.
Installs: 14 094
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.2
- monolog/monolog: ^3.0
- symfony/config: ^6.0 || ^7.0
- symfony/dependency-injection: ^6.0 || ^7.0
- symfony/http-foundation: ^6.0 || ^7.0
- symfony/security-bundle: ^6.0 || ^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^v3.11
- phpunit/phpunit: ^9.6
- symfony/phpunit-bridge: ^6.0 || ^7.0
README
Symfony bundle which enriches exceptions with some additional information like the request URL, the logged in user's name etc.
Requirements
- PHP 8.1 or greater
- Symfony 6.0
- Monolog v2 for version 1.x, v3 for version 2.x
Installation
-
Require the bundle with Composer:
composer require sblum/exception-enricher
-
If not already happened automatically, enable the bundle in
config/bundles.php
by adding it to the array:ExceptionEnricher\ExceptionEnricherBundle::class => ['all' => true],