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

Latest commit

 

History

History
14 lines (10 loc) · 384 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 384 Bytes

Slim Redis Ratelimit

PSR-7 Ratelimiter

Usage

$app = new Slim\App();

$app->add(new \Slim\Middleware\RedisRatelimit('tcp://127.0.0.1:6379', 500, 300));

This will be called on every requests and checks if the number of requests (in this case 500) exceeds within 300 seconds.

Class will also check if the Cloudflare UserIP header is set and will use that for tracking.