gitextract_npjvi3hh/ ├── .gitignore ├── LICENCE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src/ │ └── Stiphle/ │ ├── Storage/ │ │ ├── Apc.php │ │ ├── Apcu.php │ │ ├── DoctrineCache.php │ │ ├── LockWaitTimeoutException.php │ │ ├── Memcached.php │ │ ├── Process.php │ │ ├── Redis.php │ │ ├── StorageInterface.php │ │ └── ZendStorage.php │ └── Throttle/ │ ├── LeakyBucket.php │ ├── ThrottleInterface.php │ └── TimeWindow.php └── tests/ └── src/ └── Stiphle/ ├── Storage/ │ ├── ApcTest.php │ ├── ProcessTest.php │ └── RedisTest.php └── Throttle/ ├── LeakyBucketTest.php └── TimeWindowTest.php