forked from jukylin/jaeger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 955 Bytes
/
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
{
"name": "mindbreak/jaeger-php",
"description": "PHP Client for Jaeger",
"keywords": [
"jaeger",
"trace",
"opentracing"
],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"ext-sockets": "*",
"packaged/thrift": "0.13.1",
"opentracing/opentracing": "^1.0"
},
"authors": [
{
"name": "jukylin",
"email": "[email protected]"
},
{
"name": "mindbreak",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jaeger\\": "src\\Jaeger"
},
"files": [
"src/Jaeger/Constants.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"require-dev": {
"vimeo/psalm": "^4.7",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.18"
}
}