63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
|
{
|
||
|
"name": "jonahgeorge/jaeger-client-php",
|
||
|
"description": "Jaeger Bindings for PHP OpenTracing API",
|
||
|
"keywords": [
|
||
|
"jaeger",
|
||
|
"opentracing",
|
||
|
"trace",
|
||
|
"tracing"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Jonah George",
|
||
|
"homepage": "http://twitter.com/jonahgeorge"
|
||
|
},
|
||
|
{
|
||
|
"name": "José Carlos Chávez",
|
||
|
"email": "jcchavezs@gmail.com"
|
||
|
},
|
||
|
{
|
||
|
"name": "Contributors",
|
||
|
"homepage": "https://github.com/jonahgeorge/jaeger-client-php/graphs/contributors"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": "^7.1 || ^8.0 || ^8.1",
|
||
|
"ext-sockets": "*",
|
||
|
"opentracing/opentracing": "^1.0",
|
||
|
"packaged/thrift": "^0.13",
|
||
|
"psr/cache": "^1.0 || ^2.0 || ^3.0",
|
||
|
"psr/log": "^1.0 || ^2.0 || ^3.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "^7 || ^8 || ^9",
|
||
|
"squizlabs/php_codesniffer": "3.*",
|
||
|
"cache/array-adapter": "^1.0",
|
||
|
"symfony/polyfill-php73": "^1.10"
|
||
|
},
|
||
|
"config": {
|
||
|
"optimize-autoloader": true,
|
||
|
"preferred-install": "dist",
|
||
|
"sort-packages": true
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Jaeger\\": "src/Jaeger/"
|
||
|
},
|
||
|
"files": [
|
||
|
"./src/Jaeger/Constants.php"
|
||
|
]
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"Jaeger\\Tests\\": "tests/Jaeger/"
|
||
|
},
|
||
|
"minimum-stability": "dev",
|
||
|
"prefer-stable": true,
|
||
|
"scripts": {
|
||
|
"fix-lint": "./vendor/bin/phpcbf",
|
||
|
"lint": "./vendor/bin/phpcs",
|
||
|
"test": "./vendor/bin/phpunit"
|
||
|
}
|
||
|
}
|