-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
79 lines (79 loc) · 2.39 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
77
78
79
{
"name": "openzipkin/zipkin",
"type": "library",
"description": "A Zipkin instrumentation for PHP",
"keywords": [
"zipkin",
"distributed-tracing",
"tracing",
"openzipkin"
],
"license": "Apache-2.0",
"authors": [
{
"name": "José Carlos Chávez",
"email": "[email protected]"
}
],
"homepage": "https://github.com/openzipkin/zipkin-php",
"support": {
"issues": "https://github.com/openzipkin/zipkin-php/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"psr/http-message": "~1.0 || ~2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"ext-mysqli": "*",
"jcchavezs/httptest": "~0.2",
"middlewares/fast-route": "^2.0",
"middlewares/request-handler": "^2.0",
"nyholm/psr7": "^1.4",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.26",
"phpunit/phpunit": "~9",
"psr/http-client": "^1.0",
"psr/http-server-middleware": "^1.0",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Zipkin\\": "./src/Zipkin/"
},
"files": [
"./src/Zipkin/Propagation/Id.php",
"./src/Zipkin/Timestamp.php",
"./src/Zipkin/Kind.php",
"./src/Zipkin/Tags.php",
"./src/Zipkin/Annotations.php",
"./src/Zipkin/SpanName.php"
]
},
"autoload-dev": {
"psr-4": {
"ZipkinTests\\": "./tests/"
},
"files": [
"./tests/Unit/InSpan/Callables.php"
]
},
"minimum-stability": "stable",
"scripts": {
"fix-lint": "phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"lint": "phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"test": "phpunit tests",
"test-unit": "phpunit tests/Unit",
"test-integration": "phpunit tests/Integration",
"static-check": "phpstan analyse src --level 8"
},
"suggest": {
"ext-mysqli": "Allows to use mysqli instrumentation.",
"psr/http-client": "Allows to instrument HTTP clients following PSR18.",
"psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
}
}