ruudk/campfire-exception-bundle

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

A Symfony2 Bundle that logs exceptions to a Campfire chat room

0.1.10 2014-04-10 10:28 UTC

This package is auto-updated.

Last update: 2022-02-01 12:21:38 UTC


README

A Symfony2 Bundle that logs exceptions to a Campfire chat room

Installation

Step1: Require the package with Composer

php composer.phar require ruudk/campfire-exception-bundle

Step2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...

        new Ruudk\CampfireExceptionBundle\RuudkCampfireExceptionBundle(),
    );
}

Step3: Configure

Finally, add the following to your config_prod.yml

# app/config/config_prod.yml

ruudk_campfire_exception:
    application: # Your Symfony2 application name
    subdomain: # Subdomain
    token: # Campfire API token
    room: # Room ID

Congratulations! You're ready.