-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.25 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
{
"name": "topthink/think-tracing",
"description": "Distributed tracing for ThinkPHP made easy",
"license": "MIT",
"authors": [
{
"name": "yunwuxin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"think\\tracing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"think\\tracing\\tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.0",
"topthink/framework": "^6.0 || ^8.0",
"opentracing/opentracing": "^1.0",
"guzzlehttp/guzzle": "^7.0"
},
"suggest": {
"jcchavezs/zipkin-opentracing": "zipkin",
"jonahgeorge/jaeger-client-php": "jaeger"
},
"require-dev": {
"jcchavezs/zipkin-opentracing": "^1.0 || ^2.0",
"jonahgeorge/jaeger-client-php": "^1.0"
},
"extra": {
"think": {
"services": [
"think\\tracing\\Service"
],
"config": {
"tracing": "config/tracing.php"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform-check": false,
"platform": {
"ext-sockets": "1"
}
}
}