catch-e / laminas-bugsnag
Bugsnag notifier for the Laminas PHP framework
1.0.1
2022-08-25 06:27 UTC
Requires
- php: >=8.0
- bugsnag/bugsnag: ^3.28
- laminas/laminas-mvc: ^2.7.9 || ^3.0.2
Requires (Dev)
- laminas/laminas-coding-standard: ~2.3.0
- vimeo/psalm: ^4.7
This package is auto-updated.
Last update: 2026-02-25 13:58:19 UTC
README
Bugsnag?
Bugsnag integration for the Laminas Framework gives you instant notifications of the errors in your application. You can create a free plan/account on the bugsnag website.
Install
Installation with the composer
composer require catch-e/laminas-bugsnag
Requirements
- PHP 8.0+
- Laminas Framework
- Bugsnag PHP API
Post Installation
Enable it in your application.config.php (or modules.config.php) file
<?php // application.config.php return [ 'modules' => [ 'CatchE\Laminas\Bugsnag', // Must be added as the first module // ... ], // ... ]; // modules.config.php return [ 'CatchE\Laminas\Bugsnag', // Must be added as the first module // ... ];
Configuration
Copy the config/laminas-bugsnag.local.php file to your config/autoload folder and change the settings (Enabled/ApiKey)