forked from beberlei/metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.19 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
{
"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": {
"okitsu/zabbix-sender": "For zabbix integration",
"kriswallsmith/buzz": "For Librato integration"
},
"require": {
"psr/log": "~1.0"
},
"require-dev": {
"doctrine/dbal": "~2.0",
"kriswallsmith/buzz": "*",
"okitsu/zabbix-sender": "*@dev",
"symfony/config": "~2.3",
"symfony/dependency-injection": "~2.3",
"symfony/http-kernel": "~2.3"
},
"autoload": {
"psr-4": {
"Beberlei\\Metrics\\": "src/Beberlei/Metrics",
"Beberlei\\Bundle\\MetricsBundle\\": "src/Beberlei/Bundle/MetricsBundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}