-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
42 lines (42 loc) · 1.34 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
{
"name": "liuggio/statsd-client-bundle",
"type": "symfony-bundle",
"description": "Provides a statsd client and simple ready-to-use support for #Symfony2 Application",
"keywords": ["symfony", "statsd", "graphite", "monitor"],
"license": "MIT",
"authors": [
{
"name": "Liuggio",
"email": "[email protected]",
"homepage": "https://github.com/Liuggio"
},
{
"name": "Community contributions",
"homepage": "https://github.com/liuggio/StatsDClientBundle/contributors"
}
],
"require": {
"php": "^7.0 || ^8.0",
"liuggio/statsd-php-client": "~1.0.14",
"symfony/framework-bundle": "^4.0 || ^5.0"
},
"require-dev": {
"doctrine/dbal": ">=2.2.0",
"monolog/monolog": ">=1.2.0",
"phpunit/phpunit": "^6.5 || ^7.0 || ^9.5",
"symfony/yaml": "^4.0 || ^5.0"
},
"suggest": {
"doctrine/dbal": "Doctrine DBAL, collect statistic to/from the database (>=2.2.0 required)",
"monolog/monolog": "Monolog, in order to generate statistic from log >=1.2.0)"
},
"autoload": {
"psr-0": { "Liuggio\\StatsDClientBundle": "" }
},
"target-dir": "Liuggio/StatsDClientBundle",
"extra": {
"branch-alias": {
"dev-master": "1.8.x-dev"
}
}
}