-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.81 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
63
64
65
66
67
68
69
{
"name": "frzb/metrics-power",
"type": "library",
"description": "The MetricsPower component allows make your application able to metric",
"keywords": [
"library",
"symfony",
"component",
"messenger",
"http",
"metrics",
"power",
"frzb"
],
"homepage": "https://github.com/fractalzombie/frzb-metrics-power",
"license": "MIT",
"authors": [
{
"name": "Mykhailo Shtanko",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"fp4php/functional": "^6.0",
"promphp/prometheus_client_php": "^v2.10",
"symfony/http-kernel": "^6|^7",
"symfony/framework-bundle": "^6|^7",
"symfony/event-dispatcher": "^6|^7",
"frzb/dependency-injection": "^2.1",
"symfony/yaml": "^6|^7",
"symfony/messenger": "^6|^7",
"sentry/sdk": "^4.0",
"symfony/serializer": "^6|^7",
"symfony/serializer-pack": "^1.3",
"symfony/expression-language": "^6|^7",
"amphp/log": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/phpunit-bridge": "^6|^7",
"friendsofphp/php-cs-fixer": "^v3.52",
"pestphp/pest": "^2.34",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"FRZB\\Component\\MetricsPower\\": ""
}
},
"autoload-dev": {
"psr-4": {
"FRZB\\Component\\MetricsPower\\Tests\\": "Tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6.0||^7.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}