-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
33 lines (33 loc) · 923 Bytes
/
composer.json
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
{
"name": "onemightyroar/predis-toolkit",
"description": "Additional classes and functionality to extend Predis",
"type": "library",
"keywords": ["redis", "transaction"],
"homepage": "http://onemightyroar.com/",
"license": "MIT",
"authors": [
{
"name": "Brian C. Muse",
"email": "[email protected]",
"homepage": "http://brianmuse.com/"
},
{
"name": "Trevor N. Suarez",
"email": "[email protected]",
"homepage": "http://about.me/tnsuarez"
}
],
"require": {
"php": ">=5.3.0",
"predis/predis": "^1.0"
},
"autoload": {
"psr-0": { "OneMightyRoar\\PredisToolkit\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"autoload-dev": {
"psr-4": { "OneMightyRoar\\PredisToolkit\\Test\\": "tests/" }
}
}