-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.18 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "open-telemetry/sampler-aws-xray",
"description": "AWS X-Ray Remote Sampler for OpenTelemetry PHP Contrib",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.1",
"aws/aws-sdk-php": "^3.0",
"open-telemetry/api": "^1.1.0",
"open-telemetry/sdk": "^1.1.0",
"open-telemetry/sdk-configuration": "^0.0.5",
"open-telemetry/sem-conv": "^1.32"
},
"require-dev": {
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^6 || ^7",
"friendsofphp/php-cs-fixer": "^3",
"phan/phan": "^5.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"psalm/plugin-phpunit": "^0.20.0",
"phpunit/phpunit": "^10 || ^11",
"vimeo/psalm": "^4|^5|6.4.0"
},
"autoload": {
"psr-4": {
"OpenTelemetry\\Contrib\\Sampler\\Xray\\": "src/"
},
"classmap": ["src/AWSXRayRemoteSampler.php"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}