forked from liuggio/statsd-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 970 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 970 Bytes
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
{
"name": "adgoal/statsd-php-client",
"description": "Statsd (Object Oriented) client library for PHP",
"keywords": ["statsd", "monitoring", "etsy", "php"],
"homepage": "https://github.com/liuggio/statsd-php-client/",
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.6",
"ext-sockets": "*",
"ext-json": "*"
},
"authors": [
{
"name": "Giulio De Donato",
"email": "liuggio@gmail.com"
}
],
"autoload": {
"psr-4": {
"Liuggio\\StatsdClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Liuggio\\StatsdClient\\": "tests"
}
},
"require-dev": {
"monolog/monolog": ">=1.2.0",
"phpunit/phpunit": "^4.7",
"php-coveralls/php-coveralls": "^2.1"
},
"suggest": {
"monolog/monolog": "Monolog, in order to do generate statistic from log >=1.2.0)"
}
}