-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.65 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
{
"name": "open-telemetry/detector-azure",
"description": "The Azure package for opentelemetry-php",
"keywords": ["opentelemetry", "otel", "azure", "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": "^7.4 || ^8.0",
"open-telemetry/api": "^1.0",
"open-telemetry/sdk": "^1.0"
},
"require-dev": {
"assertwell/phpunit-global-state": "^0.2.2",
"dg/bypass-finals": "^v1.4.1",
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.8",
"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.18.4",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"OpenTelemetry\\Azure\\": "src/"
},
"files": [
"_register.php"
]
},
"autoload-dev": {
"psr-4": {
"OpenTelemetry\\Tests\\Azure\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/runtime": true,
"php-http/discovery": false
}
}
}