-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.32 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
{
"name": "instana/opentelemetry-php-exporter",
"description": "Instana exporter for OpenTelemetry PHP.",
"keywords": [
"opentelemetry",
"otel",
"tracing",
"contrib",
"exporter",
"instana"
],
"type": "library",
"support": {
"issues": "https://github.com/instana/opentelemetry-php-exporter/issues",
"source": "https://github.com/instana/opentelemetry-php-exporter",
"docs": "https://www.ibm.com/docs/en/instana-observability/current?topic=opentelemetry-php-exporter"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Instana contributors",
"homepage": "https://github.com/instana/opentelemetry-php-exporter/graphs/contributors"
}
],
"require": {
"php": "^8.1",
"open-telemetry/api": "^1.1",
"open-telemetry/sdk": "^1.1",
"guzzlehttp/guzzle": "^7.4.5"
},
"autoload": {
"psr-4": {
"Instana\\": "."
},
"files": [
"_register.php"
]
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload-dev": {
"psr-4": {
"Instana\\Test\\Util\\": "./test/util"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}