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

v0.2.0 2013-02-07 19:07 UTC

This package is not auto-updated.

Last update: 2024-03-16 10:55:25 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>