lamoda/tactician-rate-limit-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony bundle for lamoda/tactician-rate-limit library

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 14

Forks: 2

Open Issues: 0

Type:symfony-bundle

pkg:composer/lamoda/tactician-rate-limit-bundle

0.1.2 2022-06-27 11:08 UTC

This package is auto-updated.

Last update: 2023-05-27 13:19:28 UTC


README

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