colemando / ratchetio-bundle
Integrates Ratchet.io error reporting into your Symfony2 application.
Installs: 132
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- ratchetio/ratchetio: dev-master
This package is not auto-updated.
Last update: 2024-12-21 14:58:20 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>