-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
70 lines (70 loc) · 1.92 KB
/
composer.json
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
66
67
68
69
70
{
"name": "hyperf/open-telemetry-incubator",
"description": "OpenTelemetry component for Hyperf",
"type": "library",
"require": {
"php": ">=8.1",
"hyperf/command": "~3.1.0",
"hyperf/coroutine": "3.1.x-dev",
"hyperf/crontab": "~3.1.0",
"hyperf/database": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/event": "~3.1.0",
"hyperf/guzzle": "~3.1.0",
"hyperf/http-server": "~3.1.0",
"hyperf/redis": "~3.1.0",
"open-telemetry/api": "^1.1",
"open-telemetry/context-swoole": "^1.0",
"open-telemetry/exporter-otlp": "^1.1",
"open-telemetry/sdk": "^1.1",
"open-telemetry/sem-conv": "^1.27"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"hyperf/config": "~3.1.0",
"hyperf/testing": "^3.1",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.36",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-mockery": "^1.1",
"swoole/ide-helper": "^5.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Hyperf\\OpenTelemetry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hyperf\\OpenTelemetry\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Flc",
"email": "[email protected]"
}
],
"extra": {
"hyperf": {
"config": "Hyperf\\OpenTelemetry\\ConfigProvider"
},
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"test": "./vendor/bin/pest --color=always",
"analyse": "phpstan analyse --memory-limit=-1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false,
"tbachert/spi": false
}
}
}