Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 545 Bytes

installation.md

File metadata and controls

35 lines (27 loc) · 545 Bytes

Installation

Add this line to your composer.json :

{
    "require": {
        "m6web/statsd-bundle": "@stable"
    }
}

Update your vendors :

composer update m6web/statsd-bundle

Registering

class AppKernel extends \Symfony\Component\HttpKernel\Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new M6Web\Bundle\StatsdBundle\M6WebStatsdBundle(),
        );
    }
}

For the configuration read the usage part of the documentation.

TOC