-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.74 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
{
"name": "freepikcompany/telephponic",
"description": "A comprehensive PHP telemetry library enabling efficient collection, analysis, and visualization of your application's performance metrics. Make informed decisions with Telephphonic!",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"GR\\Telephponic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GR\\Telephponic\\Test\\": "test/"
}
},
"authors": [
{
"name": "José A. Muriano",
"email": "[email protected]"
}
],
"minimum-stability": "beta",
"require": {
"php": "^8.3",
"ext-grpc": "*",
"google/cloud-trace": "^1.6",
"google/protobuf": "^v3.3.0",
"grpc/grpc": "^1.52",
"guzzlehttp/promises": "^2.0",
"nyholm/psr7": "^1.8",
"open-telemetry/api": "@stable",
"open-telemetry/exporter-otlp": "@stable",
"open-telemetry/exporter-zipkin": "^0.0.17",
"open-telemetry/sdk": "@stable",
"open-telemetry/transport-grpc": "@stable",
"php-http/httplug": "^2.4",
"psr/log": "^3.0",
"symfony/http-client": "^6.3 || ^7.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"suggest": {
"ext-protobuf": "Significant performance improvement for otlp+protobuf exporting",
"ext-mbstring": "More performant than the fallback, symfony/polyfill-mbstring",
"ext-zlib": "If you want to compress exported data",
"ext-ffi": "Fiber-based context storage",
"ext-curl": "If you want to profile curl",
"ext-memcached": "If you want to profile memcached",
"ext-pdo": "If you want to profile PDO",
"ext-redis": "If you want to profile redis"
},
"require-dev": {
"symfony/var-dumper": "^6.3 || ^7.0",
"phpunit/phpunit": "^10.4"
}
}