PHP Package: symfony/rate-limiter

Efficient PHP rate limiting library for Symfony applications with advanced features

Current Version: 7.2.0
Last Updated: 2024-11-29
PHP Requirement: >=7.1
Dependencies: symfony/cache, symfony/config, symfony/dependency-injection
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Symfony rate-limiter is a powerful PHP library designed to provide flexible and efficient rate limiting capabilities for Symfony applications. It offers a wide range of features such as customizable rate limiting rules, support for various storage backends, and easy integration with Symfony components. With Symfony rate-limiter, you can effectively manage and control the rate at which users can access your application, ensuring optimal performance and scalability.

🔗 View on GitHub

Download Latest Version: 7.2.0

Download Download v7.2.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/symfony/rate-limiter/7.2.0/autoload.php';

use Symfony\Component\RateLimiter\RateLimiter;
use Symfony\Component\RateLimiter\Storage\StorageInterface;
use Symfony\Component\RateLimiter\Policy\Limiter;
use Symfony\Component\RateLimiter\Policy\SlidingWindowLimiter;


$obj = new Symfony\Component\RateLimiter\RateLimiter();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.