-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
62 lines (62 loc) · 2.26 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
53
54
55
56
57
58
59
60
61
62
{
"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 || ^8.0",
"guzzlehttp/psr7": "~1.4 || ^2.0"
},
"require-dev": {
"ext-json": "*",
"ext-redis": "*",
"doctrine/common": "^2.4.1 || ^3.0",
"doctrine/dbal": "^2.3",
"doctrine/doctrine-bundle": "~1.5 || ^2.0",
"doctrine/orm": "~2.4",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"predis/predis": "^1.1",
"symfony/browser-kit": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/config": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/framework-bundle": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/http-kernel": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/routing": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/stopwatch": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/yaml": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/dom-crawler": "~2.8 || ~3.0 || ~4.0 || ^5.0 || ^6.0",
"symfony/monolog-bundle": "~2.0 || ~3.0",
"masterminds/html5": "^2.6"
},
"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",
"Lamoda\\Metric\\Tests\\Builders\\": "./tests/Builders"
}
},
"config": {
"sort-packages": true
}
}