-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1.39 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
{
"name": "m6web/statsd-prometheus-bundle",
"description": "Add statsd metrics in your symfony app. Allow you to bind metrics on any symfony event.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["symfony", "bundle", "statsd", "m6web"],
"authors": [
{
"name": "M6Web",
"email": "[email protected]",
"homepage": "https://tech.m6web.fr/"
}
],
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor",
"sort-packages": true
},
"require": {
"php": "^7.2|^8.0",
"psr/container": "^1.0 || ^2.0",
"psr/event-dispatcher": "^1.0",
"symfony/contracts": "^1.1 || ^2.0 || ^3.0",
"symfony/expression-language": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"m6web/php-cs-fixer-config": "^2.0",
"phpstan/phpstan": "0.12.*",
"phpstan/phpstan-phpunit": "0.12.*",
"symfony/phpunit-bridge": "5.1 || ^6.0"
},
"suggest": {
"symfony/console": "^4.3",
"symfony/http-kernel": "^4.3"
},
"autoload": {
"psr-4": { "M6Web\\Bundle\\StatsdPrometheusBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}