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, 0 insertions, 44 deletions
diff --git a/vendor/opentracing/opentracing/composer.json b/vendor/opentracing/opentracing/composer.json
deleted file mode 100644
index b00b67381..000000000
--- a/vendor/opentracing/opentracing/composer.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "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"
- }
-}