catch-e/laminas-bugsnag

Bugsnag notifier for the Laminas PHP framework

1.0.1 2022-08-25 06:27 UTC

This package is auto-updated.

Last update: 2024-05-25 09:59:41 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

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)