Download the PHP package ryudith/mezzio-simple-throttle without Composer
On this page you can find all versions of the php package ryudith/mezzio-simple-throttle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ryudith/mezzio-simple-throttle
More information about ryudith/mezzio-simple-throttle
Files in ryudith/mezzio-simple-throttle
Package mezzio-simple-throttle
Short Description Simple throttle middleware for Mezzio.
License Apache-2.0
Informations about the package mezzio-simple-throttle
mezzio-simple-throttle
Ryudith\MezzioSimpleThrottle
is throttle middleware for Mezzio framework.
Instalation
To install run the following command :
Usage
First add ConfigProvider::class
to config/config.php
Then register middleware by add SimpleThrottle::class
to config/pipeline.php
You can add
$app->pipe(SimpleThrottle::class)
before$app->pipe(ErrorHandler::class)
if you want.
Custom configuration
Configuration for middleware is locate in vendor/ryudith/mezzio-simple-throttle/ConfigProvider.php
which the important content is :
Detail :
-
request_limit_per_minute
is how many hit before trigger throttle -
request_real_ip_key
is assoc key to get request IP, default is 'REMOTE_ADDR' which you can change if you have custom key on your webserver. -
ip_path_key
is flag to generate key if use IP-Path combine or just IP address. -
throttle_data_dir
is string path location to save throttle record data. -
file_data_delimiter
is data delimiter inside file, since this library file based record data. -
throttle_storage_class
is service key to save throttle data. You can change if you want another storage type (do not forget implement interfaceRyudith\MezzioSimpleThrottle\Storage\StorageInterface
on your custom class) throttle_response_class
is class to give response when throttle hit limit. Also you can change this if you want use your own class (do not forget implement interfaceRyudith\MezzioSimpleThrottle\Response\ThrottleResponseInterface
on your own class).
You do not have to edit configuration inside ConfigProvider.php
directly to change configuration, just add configuration you want to change to config/autoload/mezzio.global.php
for example or any configuration file you use.
For example you can add your custom configuration like this inside config/autoload/mezzio.global.php
:
Documentation
Next
- [ ] Add exclude path and/or IP
All versions of mezzio-simple-throttle with dependencies
psr/http-server-middleware Version ^1.0
psr/container Version ^1.0