summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4d273062b7a0b0a9e1dd4025625e49cd5ba862ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
    "name": "predis/predis",
    "type": "library",
    "description": "Flexible and feature-complete Redis client for PHP and HHVM",
    "keywords": ["nosql", "redis", "predis"],
    "homepage": "http://github.com/predis/predis",
    "license": "MIT",
    "support": {
        "issues": "https://github.com/predis/predis/issues"
    },
    "authors": [
        {
            "name": "Daniele Alessandri",
            "email": "suppakilla@gmail.com",
            "homepage": "http://clorophilla.net",
            "role": "Creator & Maintainer"
        },
        {
            "name": "Till Krüss",
            "homepage": "https://till.im",
            "role": "Maintainer"
        }
    ],
    "funding": [
        {
            "type": "github",
            "url": "https://github.com/sponsors/tillkruss"
        }
    ],
    "require": {
        "php": ">=5.3.9"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.8",
        "cweagans/composer-patches": "^1.6"
    },
    "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": {
 		"composer-exit-on-patch-failure": true,
 		"patches": {
 			"phpunit/phpunit-mock-objects": {
 				"Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
 			},
 			"phpunit/phpunit": {
 				"Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
 				"Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
 			}
 		}
 	}
}