-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.21 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
{
"name": "solarwinds/apm",
"description": "OpenTelemetry custom distro to connect to Solarwinds",
"keywords": ["solarwinds_apm", "swo", "instrumentation", "performance", "opentelemetry", "observability"],
"type": "library",
"readme": "./README.md",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Solarwinds\\ApmPhp\\": "src/"
},
"files": [
"src/_autoload.php",
"src/Propagator/SwoTraceState/_register.php",
"src/Propagator/XTraceOptions/_register.php",
"src/Resource/_register.php"
]
},
"authors": [
{
"name": "Jerry Leung",
"email": "tingfung.leung@solarwinds.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"Solarwinds\\ApmPhp\\Tests\\Unit\\": "tests/Unit/",
"Solarwinds\\ApmPhp\\Tests\\Benchmark\\": "tests/Benchmark/"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"mockery/mockery": "^1.6.12",
"open-telemetry/dev-tools": "dev-main",
"phpspec/prophecy": "^1.22",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^10 || ^11",
"ramsey/uuid": "^3.0 || ^4.0"
},
"require": {
"php": "^8.1",
"google/protobuf": "^3.22 || ^4.0",
"nyholm/psr7-server": "^1.1",
"open-telemetry/api": "^1.2",
"open-telemetry/exporter-otlp": "^1.2",
"open-telemetry/sdk": "^1.2",
"open-telemetry/sdk-configuration": "^0.0.8 || ^0.0.9 || ^0.1.0 || ^0.2.0",
"open-telemetry/sem-conv": "^1.30",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0.1|^2.0",
"psr/log": "^1.1|^2.0|^3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"symfony/runtime": true,
"tbachert/spi": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}