mirror of
https://github.com/predis/predis.git
synced 2026-08-19 18:22:06 +00:00
cc748d509f
This change is needed to address a bug in older versions of PHP 5.3 affecting inheritance (see https://bugs.php.net/bug.php?id=66818). We will most likely resort to a workaround in v1.0 to stick with the currently required minimum version of PHP (>= 5.3.2), but v1.1 will surely require => 5.3.9. [ci skip]
37 lines
976 B
JSON
37 lines
976 B
JSON
{
|
|
"name": "predis/predis",
|
|
"type": "library",
|
|
"description": "Flexible and feature-complete PHP client library for Redis",
|
|
"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.0"
|
|
},
|
|
"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": "1.1-dev"
|
|
}
|
|
}
|
|
}
|