forked from beatlabs/opencensus-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.71 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
59
60
{
"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",
"psr/log": "^1.0",
"psr/cache": "^1.0",
"cache/adapter-common": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "2.*",
"twig/twig": "~2.0 || ~1.35",
"symfony/yaml": "~3.3",
"guzzlehttp/guzzle": "~5.3",
"ruflin/elastica": "6.0.2",
"predis/predis": "1.1.0",
"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"
}
}