forked from open-telemetry/opentelemetry-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.43 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
{
"name": "open-telemetry/opentelemetry",
"description": "OpenTelemetry makes robust, portable telemetry a built-in feature of cloud-native software.",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.1.0",
"psr/http-client": "^1.0",
"php-http/guzzle7-adapter": "^0.1.1",
"promphp/prometheus_client_php": "^2.2.1"
},
"authors": [
{
"name": "Bob Strecansky",
"email": "bob.strecansky@gmail.com"
},
{
"name": "Dmitry Krokhin",
"email": "nekufa@gmail.com"
},
{
"name": "Levi Morrison",
"email": "levim@php.net"
}
],
"autoload": {
"psr-4": {
"OpenTelemetry\\Context\\": "Context",
"OpenTelemetry\\": "api",
"OpenTelemetry\\Sdk\\": "sdk",
"OpenTelemetry\\Contrib\\": "contrib"
}
},
"autoload-dev": {
"psr-4": {
"OpenTelemetry\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"composer/xdebug-handler": "^1.3",
"phan/phan": "^3.0",
"friendsofphp/php-cs-fixer": "^2.18",
"vimeo/psalm": "^4.0",
"phpstan/phpstan": "^0.12.50",
"phpstan/phpstan-phpunit": "^0.12.16",
"psalm/plugin-phpunit": "^0.13.0"
}
}