62 lines
1.5 KiB
JSON
Executable file
62 lines
1.5 KiB
JSON
Executable file
{
|
|
"name": "amphp/redis",
|
|
"description": "Efficient asynchronous communication with Redis servers, enabling scalable and responsive data storage and retrieval.",
|
|
"keywords": [
|
|
"amp",
|
|
"amphp",
|
|
"async",
|
|
"client",
|
|
"redis",
|
|
"revolt"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "https://amphp.org/redis",
|
|
"authors": [
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
},
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/amphp/redis/issues"
|
|
},
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"amphp/amp": "^3",
|
|
"amphp/byte-stream": "^2",
|
|
"amphp/cache": "^2",
|
|
"amphp/parser": "^1",
|
|
"amphp/pipeline": "^1",
|
|
"amphp/serialization": "^1",
|
|
"amphp/socket": "^2",
|
|
"amphp/sync": "^2",
|
|
"revolt/event-loop": "^1",
|
|
"psr/log": "^1|^2|^3",
|
|
"league/uri": "^6.5|^7"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "^3",
|
|
"amphp/process": "^2",
|
|
"phpunit/phpunit": "^9",
|
|
"amphp/php-cs-fixer-config": "^2",
|
|
"psalm/phar": "5.22"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Redis\\": "src"
|
|
},
|
|
"files": [
|
|
"src/functions.php",
|
|
"src/Internal/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Redis\\": "test"
|
|
}
|
|
}
|
|
}
|