summaryrefslogtreecommitdiff
path: root/vendor/opentracing/opentracing/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/opentracing/opentracing/composer.json')
-rw-r--r--vendor/opentracing/opentracing/composer.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/opentracing/opentracing/composer.json b/vendor/opentracing/opentracing/composer.json
new file mode 100644
index 000000000..b00b67381
--- /dev/null
+++ b/vendor/opentracing/opentracing/composer.json
@@ -0,0 +1,44 @@
+{
+ "name": "opentracing/opentracing",
+ "type": "library",
+ "description": "OpenTracing API for PHP",
+ "license": "Apache-2.0",
+ "minimum-stability": "stable",
+ "authors": [
+ {
+ "name": "José Carlos Chávez",
+ "email": "[email protected]"
+ }
+ ],
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "~0.12",
+ "phpunit/phpunit": "^7.0 || ^9.0",
+ "squizlabs/php_codesniffer": "3.*"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "autoload": {
+ "psr-4": {
+ "OpenTracing\\": "src/OpenTracing/"
+ },
+ "files": [
+ "src/OpenTracing/Tags.php",
+ "src/OpenTracing/Formats.php"
+ ]
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "OpenTracing\\Tests\\": "tests/OpenTracing"
+ }
+ },
+ "scripts": {
+ "fix-lint": "phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
+ "lint": "phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
+ "test": "phpunit tests",
+ "static-check": "phpstan analyse"
+ }
+}