123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "predis/predis",
- "type": "library",
- "description": "Flexible and feature-complete Redis client for PHP and HHVM",
- "keywords": ["nosql", "redis", "predis"],
- "homepage": "http://github.com/nrk/predis",
- "license": "MIT",
- "support": {
- "issues": "https://github.com/nrk/predis/issues"
- },
- "authors": [
- {
- "name": "Daniele Alessandri",
- "email": "suppakilla@gmail.com",
- "homepage": "http://clorophilla.net"
- }
- ],
- "require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.8"
- },
- "suggest": {
- "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
- "ext-curl": "Allows access to Webdis when paired with phpiredis"
- },
- "autoload": {
- "psr-4": {"Predis\\": "src/"}
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- }
- }
|