beapp / bugsnag-symfony-ext
Extensions for Bugsnag Symfony
Installs: 6 738
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 4
Type:symfony-bundle
Requires
- php: >=8.0
- bugsnag/bugsnag-symfony: ^1.8
- symfony/http-foundation: ^5|^6|^7
Requires (Dev)
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2025-03-26 16:28:15 UTC
README
This library provides middleware and listeners to fit our own specific uses of Bugsnag.
Requirements
PHP >= 8.0
symfony >= 5.0
bugsnag/bugsnag-symfony >= 1.8
Installation
composer require beapp/bugsnag-symfony-ext
Add the following configuration :
bugsnag_ext:
handled_exceptions:
- 'App\Exception\LogicException'
excluded_exceptions:
- 'App\Exception\NotSoImportantException'
excluded_http_codes: ["4xx", 301]
session_per_request: true
Features
handled_exceptions
: The exceptions matching one these will be forced to be notified as handled on Bugsnag platformexcluded_exceptions
: Ignore some specific exceptionsexcluded_http_codes
: Ignore exceptions matching specific Http response status code. Use "x" as a placeholder for any number.session_per_request
: Register a listener to start a session for every request