Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

lamoda/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