phpsoftbox/rate-limiter

There is no license information available for the latest version (dev-master) of this package.

Rate limiter component for the PhpSoftBox framework

Maintainers

Package info

github.com/phpsoftbox/rate-limiter

pkg:composer/phpsoftbox/rate-limiter

Statistics

Installs: 57

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2026-03-02 13:50 UTC

This package is auto-updated.

Last update: 2026-03-02 13:51:03 UTC


README

Простой компонент rate limiting на базе PSR-16.

Пример

use PhpSoftBox\RateLimiter\SimpleCacheRateLimiter;

$limiter = new SimpleCacheRateLimiter($cache);
$result = $limiter->hit('api|127.0.0.1', 60, 60);