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
Package info
github.com/ruudk/CampfireExceptionBundle
Type:symfony-bundle
pkg:composer/ruudk/campfire-exception-bundle
0.1.10
2014-04-10 10:28 UTC
Requires
- php: >=5.3.2
- kriswallsmith/buzz: ~0.9
- symfony/framework-bundle: >=2.1,<3.0
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.