-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
87 lines (87 loc) · 2.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "highlight/php-sdk",
"description": "Highlight's OpenTelemetry SDK for PHP.",
"keywords": [
"opentelemetry",
"otel",
"open-telemetry",
"tracing",
"logging",
"metrics",
"highlight",
"sdk"
],
"type": "library",
"homepage": "https://github.com/highlight/highlight",
"readme": "./README.md",
"license": "Apache-2.0",
"require": {
"php": "^8.2",
"open-telemetry/api": "@stable",
"open-telemetry/context": "@stable",
"open-telemetry/sem-conv": "@stable",
"open-telemetry/sdk": "@stable",
"open-telemetry/exporter-otlp": "@stable",
"open-telemetry/gen-otlp-protobuf": "@stable"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"authors": [
{
"name": "ayewo Saïd",
"homepage": "https://github.com/ayewo"
}
],
"autoload": {
"psr-4": {
"Highlight\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Highlight\\Tests\\": "tests/"
}
},
"require-dev": {
"assertwell/phpunit-global-state": "^0.2.2",
"composer/xdebug-handler": "^2.0",
"dg/bypass-finals": "^1.4",
"friendsofphp/php-cs-fixer": "^3.4",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.1",
"mikey179/vfsstream": "^1.6.11",
"mockery/mockery": "^1.5.1",
"monolog/monolog": "^2.3",
"nikic/php-parser": "^4.15.4",
"nyholm/psr7": "^1.4",
"open-telemetry/dev-tools": "dev-main",
"phan/phan": "^5.4",
"php-http/mock-client": "^1.5",
"phpbench/phpbench": "^1.2",
"phpdocumentor/reflection-docblock": "^5.3",
"phpmetrics/phpmetrics": "^2.8",
"phpspec/prophecy": "^1.17.0",
"phpspec/prophecy-phpunit": "2.0.1",
"phpstan/phpstan": "^1.10.13",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"psalm/plugin-mockery": "^0.11",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/psalm": "^4.30",
"qossmic/deptrac-shim": "^0.24 || ^1",
"rector/rector": ">=0.15.20",
"symfony/http-client": "^5.2",
"symfony/yaml": "^6 || ^5"
},
"scripts": {
"testSilent": "vendor/bin/phpunit tests",
"test": "@testSilent --verbose"
}
}