-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
48 lines (48 loc) · 1.44 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
{
"name": "beberlei/metrics",
"description": "Simple library to talk to metrics collector services.",
"keywords": ["metrics", "logging"],
"authors": [
{
"name": "Benjamin Eberlei",
"email": "[email protected]",
"role": "Project Founder"
},
{
"name": "Grégoire Pineau",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"license": "MIT",
"suggest": {
"corley/influxdb-sdk": "For InfluxDB integration",
"okitsu/zabbix-sender": "For zabbix integration",
"kriswallsmith/buzz": "For Librato integration",
"jimdo/prometheus_client_php": "For Prometheus integration"
},
"require": {
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"corley/influxdb-sdk": "^0.5.1",
"doctrine/dbal": "~2.0",
"jimdo/prometheus_client_php": "^0.5",
"kriswallsmith/buzz": "*",
"okitsu/zabbix-sender": "*@dev",
"symfony/config": "~3.3 || ~4.0",
"symfony/dependency-injection": "~3.3 || ~4.0",
"symfony/http-kernel": "~3.3 || ~4.0"
},
"autoload": {
"psr-4": {
"Beberlei\\Metrics\\": "src/Beberlei/Metrics",
"Beberlei\\Bundle\\MetricsBundle\\": "src/Beberlei/Bundle/MetricsBundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}