nickurt/zf-bugsnag

This package is abandoned and no longer maintained. No replacement package was suggested.

ZfBugsnag

1.0.0 2018-02-21 09:03 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:24:42 UTC


README

Bugsnag?

The Bugsnag Notifier for Zend Framework 2.3 and 3.0 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

php composer.phar require nickurt/zf-bugsnag:1.*

Requirements

Post Installation

Enable it in your application.config.php (or modules.config.php) file

<?php

// application.config.php
return array(
    'modules' => array(
        'ZfBugsnag', // Must be added as the first module
        // ...
    ),
    // ...
);

// modules.config.php
return [
    'ZfBugsnag', // Must be added as the first module

    // ...
];

Configuration

Copy the config/zfbugsnag.local.php file to your config/autoload folder and change the settings (IsEnabled/ApiKey)