forked from hyperf/tracer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
76 lines (76 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "hyperf/tracer",
"description": "Drop-in replacement for the Hyperf Tracer component.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"open-tracing",
"zipkin",
"jaeger"
],
"homepage": "https://hyperf.io",
"support": {
"docs": "https://hyperf.wiki",
"issues": "https://github.com/hyperf/hyperf/issues",
"pull-request": "https://github.com/hyperf/hyperf/pulls",
"source": "https://github.com/hyperf/hyperf"
},
"require": {
"php": ">=8.0",
"hyperf/contract": "^3.0",
"hyperf/di": "^3.0",
"hyperf/guzzle": "^3.0",
"hyperf/support": "^3.0",
"hyperf/utils": "^3.0",
"jcchavezs/zipkin-opentracing": "^2.0",
"jonahgeorge/jaeger-client-php": "^1.4",
"opentracing/opentracing": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"hyperf/config": "^3.0",
"hyperf/testing": "^3.0",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"rector/rector": "^0.17.5"
},
"suggest": {
"hyperf/event": "Required to use DbQueryExecutedListener.",
"jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing."
},
"autoload": {
"psr-4": {
"Hyperf\\Tracer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Tracer\\": "tests/"
}
},
"scripts": {
"test": "co-phpunit",
"test-coverage": "co-phpunit --coverage-clover clover.xml",
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit=-1 -l 5 -c phpstan.neon",
"rector": "rector process --clear-cache"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"hyperf": {
"config": "Hyperf\\Tracer\\ConfigProvider"
}
}
}