colemando / ratchetio-bundle
Integrates Ratchet.io error reporting into your Symfony2 application.
Package info
github.com/ecoleman/ratchetio-bundle
Type:symfony-bundle
pkg:composer/colemando/ratchetio-bundle
v0.2.0
2013-02-07 19:07 UTC
Requires
- ratchetio/ratchetio: dev-master
This package is not auto-updated.
Last update: 2026-03-14 20:56:51 UTC
README
Intergrates ratchet.io with your Symfony2 application.
Installation
Require the bundle using composer:
$ composer require colemando/ratchetio-bundle
Enable the Bundle
Add Colemando\RatchetioBundle\ColemandoRatchetioBundle to your AppKernel:
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Colemando\RatchetioBundle\ColemandoRatchetioBundle(),
);
}
Configure your Access Token
In your symfony configuration file (app/config.yml) you need to define your access_token for ratchet.io as follows:
colemando_ratchetio: access_token: <your token here>