hedii/laravel-throttle-route

A Laravel package to throttle requests based on route name
61,880
Install
composer require hedii/laravel-throttle-route
Latest Version:2.0.0
PHP:^7.2.5
License:MIT
Last Updated:Nov 4, 2020
Links: GitHub  ·  Packagist
Maintainer: hedii

Build Status

Laravel Throttle Route

A Laravel package to throttle requests based on route name.

The default Laravel request throttler acts as a global throttler based on user ID or IP. This package allows to have a request limit set by route, by using the route name to resolve the request signature.

Installation

Install with composer

composer require hedii/laravel-throttle-route

Usage

Add the middleware in your route, and use it as the default Laravel ThrottleRequests middleware.

Don't forget to set a route name.

Route::get('/first', 'FirstController@show')
    ->middleware(\Hedii\LaravelThrottleRoute\ThrottleRequests::class . ':20,1')
    ->name('first');
    
Route::get('/second', 'SecondController@show')
    ->middleware(\Hedii\LaravelThrottleRoute\ThrottleRequests::class . ':60,1')
    ->name('second');

Testing

composer test

License

laravel-throttle-route is released under the MIT Licence. See the bundled LICENSE file for details.

Related Packages

amiiiiink/laravel-rate-limiter

A flexible rate limiting middleware for Laravel and Lumen applications

4 1
aporat/laravel-rate-limiter

A flexible rate limiting middleware for Laravel and Lumen applications

2,140 4
hedii/laravel-gelf-logger

A Laravel package to send logs to a gelf compatible backend like graylog

3,806,282 135
smac925/capsule-crm

Smac925 Capsule-CRM is a simple Laravel 5.1 bridge for making, throttling, cachi...

70
hamburgscleanest/laravel-guzzle-throttle

A Laravel wrapper for https://github.com/hamburgscleanest/guzzle-advanced-thrott...

13,784 76