forked from php-enqueue/monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.59 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
{
"name": "enqueue/monitoring",
"type": "library",
"description": "Enqueue Monitoring",
"keywords": ["messaging", "queue", "monitoring", "grafana"],
"homepage": "https://enqueue.forma-pro.com/",
"license": "MIT",
"require": {
"php": "^7.1.3",
"enqueue/enqueue": "^0.9",
"ramsey/uuid": "^3",
"enqueue/dsn": "^0.9"
},
"require-dev": {
"phpunit/phpunit": "~5.4.0",
"enqueue/test": "0.9.x-dev",
"influxdb/influxdb-php": "^1.14",
"datadog/php-datadogstatsd": "^1.3",
"thruway/client": "^0.5",
"thruway/pawl-transport": "^0.5"
},
"suggest": {
"thruway/client": "Client for Thruway and the WAMP (Web Application Messaging Protocol).",
"thruway/pawl-transport": "Pawl WebSocket Transport for Thruway Client",
"influxdb/influxdb-php": "A PHP Client for InfluxDB, a time series database",
"datadog/php-datadogstatsd": "Datadog monitoring tool PHP integration"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/php-enqueue/enqueue-dev/issues",
"forum": "https://gitter.im/php-enqueue/Lobby",
"source": "https://github.com/php-enqueue/enqueue-dev",
"docs": "https://github.com/php-enqueue/enqueue-dev/blob/master/docs/index.md"
},
"autoload": {
"psr-4": { "Enqueue\\Monitoring\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
}
}