-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
70 lines (70 loc) · 1.62 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
70
{
"name": "worldia/instrumentation-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"instrumentation",
"tracing",
"metrics",
"open-telemetry",
"prometheus"
],
"authors": [
{
"name": "Worldia developers",
"email": "[email protected]"
}
],
"require": {
"open-telemetry/sdk": "^1.1",
"symfony/dependency-injection": "*"
},
"require-dev": {
"doctrine/dbal": "^3.0",
"open-telemetry/gen-otlp-protobuf": "^1.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^10.5",
"symfony/framework-bundle": "^7.1",
"symfony/http-client": "*",
"symfony/messenger": "*",
"symfony/monolog-bundle": "^3.7",
"symfony/security-core": "*",
"symfony/serializer": "*",
"symfony/twig-bundle": "*",
"worldia/coding-standards": "^1.0"
},
"suggest": {
"open-telemetry/exporter-otlp": "To export telemetry data to an OTLP compatible ingester (Jaeger, Tempo, Loki, etc.)",
"symfony/monolog-bundle": "To enable open-telemetry logging"
},
"autoload": {
"psr-4": {
"Instrumentation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Instrumentation\\": "spec/",
"Tests\\Instrumentation\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"minimum-stability": "dev",
"prefer-stable": true,
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
}
}