forked from openzipkin/zipkin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.38 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
{
"name": "openzipkin/zipkin",
"type": "library",
"description": "A Zipkin instrumentation for PHP",
"keywords": [
"zipkin",
"tracing",
"openzipkin"
],
"license": "MIT",
"authors": [
{
"name": "José Carlos Chávez",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-curl": "*",
"psr/http-message": "~1.0",
"psr/log": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.4",
"jcchavezs/httptest": "~0.2",
"phpunit/phpunit": "~5.7.19",
"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"
]
},
"autoload-dev": {
"psr-4": {
"ZipkinTests\\": "./tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"fix-lint": "phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"lint": "phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"test": "phpunit tests"
}
}