-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 978 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 978 Bytes
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
{
"name": "cyberclick/otel-bundle",
"description": "OpenTelemetry Symfony bundle with tracing, logging correlation, Doctrine instrumentation and Messenger middleware",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Cyberclick\\OtelBundle\\": "src/"
}
},
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^7.0|^8.0",
"symfony/event-dispatcher": "^7.0|^8.0",
"symfony/http-client": "^7.0|^8.0",
"symfony/http-kernel": "^7.0|^8.0",
"symfony/console": "^7.0|^8.0",
"symfony/messenger": "^7.0|^8.0",
"symfony/routing": "^7.0|^8.0",
"open-telemetry/api": "^1.0",
"open-telemetry/sdk": "^1.0",
"open-telemetry/exporter-otlp": "^1.0",
"open-telemetry/sem-conv": "^1.0",
"doctrine/dbal": "^3.6|^4.0",
"monolog/monolog": "^3.0"
},
"config": {
"sort-packages": true
}
}