-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.71 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "opencodeco/hyperf-opentelemetry",
"description": "OpenTelemetry instrumentation for Hyperf framework",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"opentelemetry",
"tracing",
"metrics",
"logs"
],
"authors": [
{
"name": "Thiago Faino",
"email": "thiagofaino@gmail.com"
},
{
"name": "Lucas Angeli",
"email": "lucas.angeli.gimenes@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"hyperf/command": "~3.1.0",
"hyperf/crontab": "~3.1.0",
"hyperf/database": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/event": "~3.1.0",
"hyperf/grpc-client": "~3.1.0",
"hyperf/guzzle": "~3.1.0",
"hyperf/http-server": "~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.40",
"hyperf/testing": "^3.0",
"mockery/mockery": "^1.6",
"phpmd/phpmd": "^2.14",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"swoole/ide-helper": "^5.1"
},
"autoload": {
"psr-4": {
"Hyperf\\OpenTelemetry\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"hyperf": {
"config": "Hyperf\\OpenTelemetry\\ConfigProvider"
}
},
"scripts": {
"test": "co-phpunit --prepend tests/bootstrap.php -c phpunit.xml --colors=always",
"lint:fix": [
"composer lint:cs:fix",
"composer lint:update"
],
"lint:cs:fix": ["php-cs-fixer fix $1", "phpcbf --standard=PSR12 src"],
"lint:cs:check": ["php-cs-fixer fix -v --diff --dry-run $1", "phpcs --standard=PSR12,phpcs.xml -s src"],
"lint:mess": "phpmd src ansi phpmd.xml",
"lint:updated": "rector --dry-run",
"lint:update": "rector",
"lint": [
"composer lint:cs:check",
"composer lint:mess",
"composer lint:updated"
],
"ci": [
"composer lint",
"composer test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"php-http/discovery": true,
"tbachert/spi": true
}
}
}