Download the PHP package madmikeyb/throttleable without Composer
On this page you can find all versions of the php package madmikeyb/throttleable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download madmikeyb/throttleable
More information about madmikeyb/throttleable
Files in madmikeyb/throttleable
Package throttleable
Short Description Temporarily disallow IP addresses from taking certain actions within your Laravel Application
License MIT
Homepage https://github.com/madmikeyb/throttleable
Informations about the package throttleable
Laravel Throttleable
Throttle requests to your application based on users IP address.
- Set a threshold on how many requests an IP address can make.
- Throttles expire after a configurable period of time.
- Throttles are unique per IP address.
- Configurable through
config/throttleable.php
Installation
Pull in the package using Composer
composer require madmikeyb/throttleable
Note: If you are using Laravel 5.5, the next steps are unnecessary. Laravel Throttleable supports Laravel Package Discovery.
Include the service provider within app/config/app.php
.
Migrations
You must publish the migration by running the following command:
Configuration
Throttleable supports optional configuration.
You can publish the config file with:
When published, the config/throttleable.php
config file contains:
These are merely the default values and can be overriden on a case-by-case basis if needed.
Sample Usage
Simply import the Throttle Model in your controller.
Then, on whichever method you'd like to throttle, new up a Throttle
instance. The minimum parameters required by this class is an instance of Illuminate\Http\Request
.
The check()
method of Throttle
returns a boolean, which indicates whether the IP address has been throttled or not.
NB. the alert()
helper is provided by uxweb/sweet-alert and is not included in this package.
Full Example
Overriding Configuration on a case-by-case basis
In some cases you may want to override the default attempt and time limits which are set in the configuration file. For example, a user creating a comment may not be throttled as quickly as someone trying to log into an admin control panel.
The second and third arguments to the constructor of the Throttle
model are the attempt_limit
and the expiry_weeks
configuration variables respectively.
If you need to override the defaults set in config/throttleable.php
, you would do so as follows:
License
The MIT License (MIT). Please see License File for more information.
All versions of throttleable with dependencies
illuminate/database Version ~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0
illuminate/http Version ~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0
nesbot/carbon Version ~1.24|~2.0
illuminate/events Version ~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0.0|~7.0.0