This repository has been archived by the owner on Aug 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.02 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lagged/RedisMon",
"description": "A monitor for Redis' vitals",
"keywords": ["statsd", "monitoring", "redis", "librato"],
"homepage": "http://github.com/lagged/RedisMon",
"type": "application",
"license": "New BSD License",
"authors": [
{
"name": "Till Klampaeckel",
"email": "[email protected]",
"homepage": "http://till.klampaeckel.de/blog/"
}
],
"repositories": [
{
"packagist": false
},
{
"type": "package",
"package": {
"name": "Rediska",
"version": "0.5.6",
"source": {
"url": "git://github.com/Shumkov/Rediska.git",
"type": "git",
"reference": "fd1a56dde919f0bda4c8c10f81092723c133e905"
}
}
},
{
"type": "package",
"package": {
"name": "Services_Librato",
"version": "dev-master",
"source": {
"url": "git://github.com/till/Services_Librato.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "IniParser",
"version": "dev-master",
"source": {
"url": "git://github.com/till/IniParser.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=5.3.0",
"Rediska": "0.5.6",
"Services_Librato": "*",
"IniParser": "*"
},
"autoload": {
"psr-0": {
"Lagged\\RedisMon": "library/",
"Rediska": "vendor/Rediska/library/",
"Services\\Librato": "vendor/Services_Librato/library/",
"IniParser": "vendor/IniParser/src/"
}
},
"bin": ["bin/redis-mon"]
}