forked from jukylin/jaeger-php
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
53 lines (53 loc) · 1.15 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": "auxmoney/jaeger-php",
"description": "php client for jaeger",
"keywords": [
"jaeger",
"trace",
"opentracing"
],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"ext-json": "*",
"packaged/thrift": "~0.13.0",
"opentracing/opentracing": "^1.0.1"
},
"authors": [
{
"name": "jukylin",
"email": "742161455@qq.com"
},
{
"name": "auxmoney GmbH",
"email": "opensource@auxmoney.com"
}
],
"autoload": {
"psr-4": {
"Jaeger\\": "src\\Jaeger"
},
"files": [
"src/Jaeger/Constants.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests\\"
}
},
"scripts": {
"test": "phpdbg -qrr vendor/bin/phpunit",
"phpcs": "vendor/bin/php-cs-fixer fix --ansi",
"phpcs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff 1>&2",
"phpstan": "vendor/bin/phpstan analyse src tests"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^8.5",
"php-coveralls/php-coveralls": "^v2.4",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^v3.1"
}
}