Skip to content

evolution7/bugsnag-cilex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bugsnag Middleware for Cilex

The Bugsnag middleware for Cilex integrates into Cilex PHP applications.

Bugsnag captures errors in real-time from your web, mobile and desktop applications, helping you to understand and resolve them as fast as possible. Create a free account to start capturing errors from your applications.

The Bugsnag middleware for Cilex supports Cilex 1.1+ and PHP 5.3+.

Installation

To get this middleware in to an existing project, the best way is to use Composer.

  1. Add bugsnag/bugsnag-cilex as a Composer dependency in your project's composer.json file:

    {
      "require": {
        "evolution7/bugsnag-cilex": "*"
      }
    }
  2. If you haven't already, download and install Composer:

    curl -sS https://getcomposer.org/installer | php
  3. Install your Composer dependencies:

    php composer.phar install
  4. Set up Composer's autoloader:

    require_once 'vendor/autoload.php';

You're done! See the example application below that demonstrates basic usage.

Example application

<?php
require_once __DIR__.'/vendor/autoload.php';

$app = new Cilex\Application();

$app->register(new Bugsnag\Cilex\Provider\BugsnagServiceProvider, array(
    'bugsnag.options' => array(
        'apiKey' => '066f5ad3590596f9aa8d601ea89af845'
    )
));

$app->get('/hello/{name}', function($name) use($app) {
    throw new Exception("Hello!");
    return 'Hello '.$app->escape($name);
});

$app->run();

If you want to access the bugsnag client directly (for example, to configure it or to send a crash report manually), you can use $app['bugsnag'].

About

Cilex Provider for the Bugsnag library

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages