-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.19 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.19 KB
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
{
"name": "flow-php/symfony-telemetry-bundle",
"type": "symfony-bundle",
"description": "Flow PHP - Symfony Telemetry Bundle",
"keywords": [
"flow-php",
"symfony",
"telemetry",
"opentelemetry",
"tracing",
"metrics",
"logging",
"bundle"
],
"homepage": "https://github.com/flow-php/flow",
"license": "MIT",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"flow-php/psr3-telemetry-bridge": "self.version",
"flow-php/symfony-http-foundation-telemetry-bridge": "self.version",
"flow-php/telemetry": "self.version",
"psr/clock": "^1.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-client-contracts": "^3.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/polyfill-mbstring": "^1.33"
},
"require-dev": {
"doctrine/dbal": "^4.4",
"flow-php/psr18-telemetry-bridge": "self.version",
"flow-php/telemetry-otlp-bridge": "self.version",
"nyholm/psr7": "^1.8",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/messenger": "^6.4 || ^7.4 || ^8.0",
"symfony/routing": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.0"
},
"suggest": {
"doctrine/dbal": "Required for Doctrine DBAL tracing (^4.4)",
"flow-php/psr18-telemetry-bridge": "Required for PSR-18 HTTP client tracing",
"flow-php/telemetry-otlp-bridge": "Required for OTLP exporter support",
"symfony/messenger": "Required for Messenger tracing middleware",
"twig/twig": "Required for Twig template tracing"
},
"autoload": {
"psr-4": {
"Flow\\": [
"src/Flow"
]
},
"files": [
"src/Flow/Bridge/Symfony/TelemetryBundle/DSL/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Flow\\": "tests/Flow"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}