-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.69 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "open-telemetry/contrib-aws",
"description": "The Aws package for opentelemetry-php",
"keywords": ["opentelemetry", "otel", "aws", "tracing", "detector", "propagator"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "opentelemetry-php-contrib contributors",
"homepage": "https://github.com/open-telemetry/opentelemetry-php-contrib/graphs/contributors"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"bref/bref": "^2.4",
"open-telemetry/api": "^1.0",
"open-telemetry/sdk": "^1.0",
"open-telemetry/exporter-otlp": "^1.3",
"open-telemetry/sem-conv": "^1.32",
"aws/aws-sdk-php": "^3.232"
},
"require-dev": {
"dg/bypass-finals": "^v1.4.1",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"open-telemetry/dev-tools": "dev-main",
"phan/phan": "^4.1 || ^5",
"php-http/mock-client": "*",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "~9",
"psalm/plugin-phpunit": "^0.20.0",
"vimeo/psalm": "6.4.0"
},
"autoload": {
"psr-4": {
"OpenTelemetry\\Contrib\\Aws\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenTelemetry\\Tests\\Aws\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false,
"symfony/runtime": true,
"tbachert/spi": true
}
}
}