forked from openzipkin/zipkin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.31 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "jcchavezs/zipkin",
"description": "A Zipkin instrumentation for PHP",
"type": "library",
"keywords": ["zipkin", "tracing", "openzipkin"],
"license": "MIT",
"authors": [
{
"name": "José Carlos Chávez",
"email": "jcchavezs@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6||^7.0",
"psr/log": "^1.0",
"psr/http-message": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7.19",
"squizlabs/php_codesniffer": "3.*",
"guzzlehttp/psr7": "^1.4",
"jcchavezs/httptest": "~0.2"
},
"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/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"lint": "./vendor/bin/phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"fix-lint": "./vendor/bin/phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./"
}
}