Add this line to your composer.json
:
{
"require": {
"m6web/statsd-bundle": "@stable"
}
}
Update your vendors :
composer update m6web/statsd-bundle
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.