mirror of
https://github.com/predis/predis.git
synced 2026-08-20 01:51:47 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "predis/predis",
|
|
"type": "library",
|
|
"description": "A flexible and feature-complete Redis client for PHP.",
|
|
"keywords": ["nosql", "redis", "predis"],
|
|
"homepage": "http://github.com/predishq/predis",
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/predishq/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": ">=7.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.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/"
|
|
}
|
|
}
|
|
}
|