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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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 :

  1. request_limit_per_minute is how many hit before trigger throttle

  2. 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.

  3. ip_path_key is flag to generate key if use IP-Path combine or just IP address.

  4. throttle_data_dir is string path location to save throttle record data.

  5. file_data_delimiter is data delimiter inside file, since this library file based record data.

  6. throttle_storage_class is service key to save throttle data. You can change if you want another storage type (do not forget implement interface Ryudith\MezzioSimpleThrottle\Storage\StorageInterface on your custom class)

  7. 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 interface Ryudith\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

API Documentation

Issues or questions

Next


All versions of mezzio-simple-throttle with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ~8.0.0 || ~8.1.0
psr/http-server-middleware Version ^1.0
psr/container Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ryudith/mezzio-simple-throttle contains the following files

Loading the files please wait ....