-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.83 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.83 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "open-telemetry/opentelemetry-auto-laravel",
"description": "OpenTelemetry auto-instrumentation for Laravel",
"keywords": [
"opentelemetry",
"otel",
"open-telemetry",
"tracing",
"laravel",
"instrumentation"
],
"type": "library",
"homepage": "https://opentelemetry.io/docs/languages/php/",
"readme": "./README.md",
"license": "Apache-2.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-opentelemetry": "*",
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"open-telemetry/api": "^1.8",
"open-telemetry/sem-conv": "^1.32"
},
"suggest": {
"open-telemetry/opentelemetry-propagation-server-timing": "Automatically propagate the context to the client through server-timing headers.",
"open-telemetry/opentelemetry-propagation-traceresponse": "Automatically propagate the context to the client through trace-response headers."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"guzzlehttp/guzzle": "*",
"nunomaduro/collision": "*",
"open-telemetry/sdk": "^1.8",
"orchestra/testbench": ">=7.41.3",
"phan/phan": "^5.0",
"php-http/mock-client": "*",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.20.0",
"spatie/laravel-ignition": "*",
"vimeo/psalm": "6.4.0"
},
"autoload": {
"psr-4": {
"OpenTelemetry\\Contrib\\Instrumentation\\Laravel\\": "src/"
},
"files": [
"_register.php"
]
},
"autoload-dev": {
"psr-4": {
"OpenTelemetry\\Tests\\Contrib\\Instrumentation\\Laravel\\": "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}