summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/context/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/open-telemetry/context/composer.json')
-rw-r--r--vendor/open-telemetry/context/composer.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/open-telemetry/context/composer.json b/vendor/open-telemetry/context/composer.json
new file mode 100644
index 000000000..348b57f73
--- /dev/null
+++ b/vendor/open-telemetry/context/composer.json
@@ -0,0 +1,41 @@
+{
+ "name": "open-telemetry/context",
+ "description": "Context implementation for OpenTelemetry PHP.",
+ "keywords": ["opentelemetry", "otel", "context"],
+ "type": "library",
+ "support": {
+ "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
+ "source": "https://github.com/open-telemetry/opentelemetry-php",
+ "docs": "https://opentelemetry.io/docs/php",
+ "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V"
+ },
+ "license": "Apache-2.0",
+ "authors": [
+ {
+ "name": "opentelemetry-php contributors",
+ "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
+ }
+ ],
+ "require": {
+ "php": "^7.4 || ^8.0",
+ "symfony/polyfill-php80": "^1.26",
+ "symfony/polyfill-php81": "^1.26",
+ "symfony/polyfill-php82": "^1.26"
+ },
+ "autoload": {
+ "psr-4": {
+ "OpenTelemetry\\Context\\": "."
+ },
+ "files": [
+ "fiber/initialize_fiber_handler.php"
+ ]
+ },
+ "suggest": {
+ "ext-ffi": "To allow context switching in Fibers"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.0.x-dev"
+ }
+ }
+}