ruudk / campfire-exception-bundle
A Symfony2 Bundle that logs exceptions to a Campfire chat room
Installs: 1 957
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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.