Require the bundle with composer. (indragunawan/api-rate-limit-bundle
on Packagist);
composer require indragunawan/api-rate-limit-bundle
Enable the bundle in the kernel:
// app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Indragunawan\ApiRateLimitBundle\IndragunawanApiRateLimitBundle(),
);
// ...
}
}