Download the PHP package aporat/laravel-rate-limiter without Composer
On this page you can find all versions of the php package aporat/laravel-rate-limiter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aporat/laravel-rate-limiter
More information about aporat/laravel-rate-limiter
Files in aporat/laravel-rate-limiter
Package laravel-rate-limiter
Short Description A flexible rate limiting middleware for Laravel and Lumen applications
License MIT
Homepage https://github.com/aporat/laravel-rate-limiter
Informations about the package laravel-rate-limiter
Laravel Rate Limiter
A flexible rate limiting middleware for Laravel applications, designed to throttle requests and actions using Redis.
Features
- Configurable rate limits per hour, minute, and second.
- Flexible limiting by IP, user ID, request method, and custom tags.
- IP blocking for abuse prevention.
- Optional rate limit headers in responses.
- Redis-backed storage for scalability.
Requirements
- PHP: 8.2 or higher
- Laravel: 10.x, 11.x or 12.x
- Redis: Required for storage (ext-redis extension)
- Composer: Required for installation
Installation
Install the package via Composer:
The service provider (RateLimiterServiceProvider
) is automatically registered via Laravel’s package discovery. If auto-discovery is disabled, add it to config/app.php
:
Optionally, register the facade for cleaner syntax:
Publish the configuration file:
This copies rate-limiter.php
to your config/
directory.
Configuration
Edit config/rate-limiter.php
to adjust limits and Redis settings:
Add these to your .env
file if needed:
Usage
Middleware
Apply rate limiting globally by registering the middleware in app/Http/Kernel.php
:
Or apply it to specific routes:
The middleware uses the configured limits (hourly
, minute
, second
) and exempts IPs starting with 10.0.
.
Manual Rate Limiting
Use the RateLimiter
facade for custom limiting:
IP Blocking
Block an IP manually:
Check if an IP is blocked:
Rate Limit Headers
Add headers to responses:
Testing
Run the test suite:
Generate coverage reports:
Contributing
Contributions are welcome! Please:
- Fork the repository.
- Create a feature branch (
git checkout -b feature/new-feature
). - Commit your changes (
git commit -m "Add new feature"
). - Push to the branch (
git push origin feature/new-feature
). - Open a pull request.
Report issues at GitHub Issues.
License
This package is licensed under the License File for details.
Support
- Issues: GitHub Issues
- Source: GitHub Repository
All versions of laravel-rate-limiter with dependencies
ext-json Version *
ext-redis Version *
illuminate/support Version ^10.0 || ^11.0
illuminate/http Version ^10.0 || ^11.0