-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1013 Bytes
/
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
{
"name": "macpaw/symfony-otel-bundle",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Macpaw\\SymfonyOtelBundle\\": "src/"
}
},
"authors": [
{
"name": "Taras Ziabukhin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-opentelemetry": "*",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"open-telemetry/symfony-sdk-bundle": "^0.0.25",
"symfony/http-client": "^6.4|^7.0",
"nyholm/psr7": "^1.8",
"guzzlehttp/promises": "^2.0",
"php-http/httplug": "^2.4",
"symfony/http-kernel": "^6.4|^7.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
},
"require-dev": {
"phpunit/phpunit": "^11.4"
}
}