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

Installs: 2

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/phpsoftbox/rate-limiter

dev-master 2026-02-06 10:49 UTC

This package is auto-updated.

Last update: 2026-02-06 10:49:08 UTC


README

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

Пример

use PhpSoftBox\RateLimiter\SimpleCacheRateLimiter;

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