forked from HonzaMac/mongo-multiple-instance-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1009 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
34
35
36
37
38
39
40
{
"name": "honzamac/mongo-multiple-instance-monitoring",
"description": "Tool for live monitoring of multiple mongodb instances",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Honza Machala",
"email": "honza.machala@seznam.cz"
}
],
"autoload": {
"psr-4": {
"MongoMonitoring\\": "src/"
},
"files": [
"src/functions.php"
]
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5",
"icicleio/icicle": "^0.9",
"icicleio/http": "^0.3",
"icicleio/websocket": "^0.1.0",
"ramsey/uuid": "^3.3",
"jmikola/react-mongodb": "@dev",
"icicleio/react-adapter": "^0.4.0",
"nette/neon": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "5.3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jmikola/react-mongodb.git"
}
]
}