quioteframework/ratelimit

Rate limiting (login throttle, PDO-backed limiter storage) for Quiote, built on symfony/rate-limiter.

Maintainers

Package info

github.com/quioteframework/ratelimit

Issues

pkg:composer/quioteframework/ratelimit

Transparency log

Statistics

Installs: 0

Dependents: 1

Suggesters: 1

Stars: 0

dev-main 2026-07-04 13:58 UTC

This package is auto-updated.

Last update: 2026-07-05 17:07:43 UTC


README

Rate limiting (login throttle, PDO-backed limiter storage) for Quiote, built on symfony/rate-limiter.

Install

composer require quioteframework/ratelimit

Use

A plain library, not a plugin — no plugins config entry needed. Instantiate directly where you need it:

use Quiote\Security\RateLimit\LoginThrottle;
use Quiote\Security\RateLimit\PdoRateLimiterStorage;

$throttle = new LoginThrottle(new PdoRateLimiterStorage($pdo));

License

MIT. See LICENSE.