forked from lamoda/php-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.76 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
49
50
51
52
{
"name": "lamoda/metrics",
"license": "MIT",
"description": "Library for handling and displaying custom project metrics",
"type": "library",
"keywords": ["metrics", "monitoring", "prometheus", "telegraf", "symfony-bundle"],
"authors": [
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"require": {
"php": "~7.1",
"guzzlehttp/psr7": "~1.4"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/framework-bundle": "~2.8 || ~3.0 || ~4.0",
"symfony/browser-kit": "~2.8 || ~3.0 || ~4.0",
"symfony/http-kernel": "~2.8 || ~3.0 || ~4.0",
"symfony/routing": "~2.8 || ~3.0 || ~4.0",
"symfony/config": "~2.8 || ~3.0 || ~4.0",
"symfony/dependency-injection": "~2.8 || ~3.0 || ~4.0",
"symfony/yaml": "~2.8 || ~3.0 || ~4.0",
"symfony/stopwatch": "~2.8 || ~3.0 || ~4.0",
"doctrine/common": "^2.4.1",
"doctrine/dbal": "^2.3",
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": "~1.5"
},
"autoload": {
"psr-4": {
"Lamoda\\Metric\\Common\\": "./src/Common",
"Lamoda\\Metric\\Responder\\": "./src/Responder",
"Lamoda\\Metric\\Storage\\": "./src/Storage",
"Lamoda\\Metric\\Adapters\\": "./src/Adapters",
"Lamoda\\Metric\\MetricBundle\\": "./src/MetricBundle",
"Lamoda\\Metric\\Collector\\": "./src/Collector"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\Metric\\Common\\Tests\\": "./tests/Common",
"Lamoda\\Metric\\Responder\\Tests\\": "./tests/Responder",
"Lamoda\\Metric\\Adapters\\Tests\\": "./tests/Adapters",
"Lamoda\\Metric\\MetricBundle\\Tests\\": "./tests/MetricBundle",
"Lamoda\\Metric\\Storage\\Tests\\": "./tests/Storage",
"Lamoda\\Metric\\Collector\\Tests\\": "./tests/Collector"
}
}
}