This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
58 lines (58 loc) · 1.68 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
57
58
{
"name": "opencensus/opencensus",
"type": "library",
"description": "OpenCensus Trace Client for PHP",
"license": "Apache-2.0",
"authors": [
{
"name": "Jeff Ching",
"email": "[email protected]"
},
{
"name": "Bas van Beek",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"ramsey/uuid": "^3.0 || ^4.0",
"psr/log": "^1.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"cache/adapter-common": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.0",
"twig/twig": "~2.0 || ~1.35",
"symfony/yaml": "~3.3",
"guzzlehttp/guzzle": "~5.3",
"guzzlehttp/psr7": "~1.4"
},
"conflict": {
"ext-opencensus": "< 0.1.0"
},
"suggest": {
"opencensus/opencensus-exporter-jaeger": "Export data to Jaeger",
"opencensus/opencensus-exporter-stackdriver": "Export data to Stackdriver",
"opencensus/opencensus-exporter-zipkin": "Export data to Zipkin",
"ext-opencensus": "Enable tracing arbitrary functions.",
"cache/apcu-adapter": "Enable QpsSampler to use apcu cache.",
"cache/apc-adapter": "Enable QpsSampler to use apc cache.",
"cache/memcached-adapter": "Enable QpsSampler to use memcached cache."
},
"autoload": {
"psr-4": {
"OpenCensus\\": "src/"
}
},
"archive": {
"exclude": [
"ext/",
"scripts/"
]
},
"scripts": {
"tests": "scripts/run_local_tests.sh"
}
}