This repository has been archived by the owner on May 25, 2021. It is now read-only.
forked from census-instrumentation/opencensus-php
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
58 lines (58 loc) · 1.66 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": "chingor@google.com"
},
{
"name": "Bas van Beek",
"email": "bas.vanbeek@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"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 || ^6",
"guzzlehttp/psr7": "^1.4"
},
"conflict": {
"ext-opencensus": "< 0.1.0"
},
"suggest": {
"ext-json": "For using LoggerExporter",
"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"
}
}