catch-e / laminas-bugsnag
Bugsnag notifier for the Laminas PHP framework
Installs: 12 818
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
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: 2025-02-25 11:31:30 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)