forked from jdp/redisent
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 751 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 751 Bytes
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
{
"name": "redisent/redis",
"description": "A simple, no-nonsense interface to the Redis for modest developers. It is designed to be flexible and tolerant of changes to the Redis protocol",
"keywords": ["redis","redisent","nosql","key value store"],
"type": "library",
"homepage": "https://github.com/mardix/redisent",
"license": "ISC",
"authors": [
{
"name": "Justin Poliey",
"homepage": "https://github.com/jdp/redisent"
},
{
"name": "Mardix",
"homepage": "http://github.com/mardix",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": { "Redisent": "src/" }
}
}