Skip to content

zendex/tactician-rate-limit-bundle

 
 

Repository files navigation

Lamoda Tactician rate limit middleware bundle

Utility wrapper for https://github.com/lamoda/tactician-rate-limit

Installation

Usage is as simple as

composer require lamoda/tactician-rate-limit-bundle
# Currently this bundle supports only https://github.com/davedevelopment/stiphle rate limiter, so install it:
composer require davedevelopment/stiphle
// Kernel

public function registerBundles()
{
    // ...
    $bundles[] = new \Lamoda\TacticianRateLimitBundle\LamodaTacticianRateLimitBundle();
    // ...
}
# config.yml
lamoda_tactician_rate_limit:
    logging:
        service: logger # to use logging
    rate_limiter:
        stiphle:
            service: stiphle # point to stiphle service
            
services:
    stiphle:
        class: Stiphle\Throttle\LeakyBucket

Packages

No packages published

Languages

  • PHP 100.0%