-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1.13 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
{
"name": "subzerobo/elastic-apm-php-agent",
"description": "PHP Agent for Elastic APM With Intake API V2 Support + UDP Support",
"license": "MIT",
"authors": [
{
"name": "Ali Kaviani",
"email": "[email protected]",
"homepage": "http://subzeroboy.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"type": "library",
"require": {
"php": ">=7.0",
"google/protobuf": "^3.7",
"ramsey/uuid": "^3.8",
"ralouphie/getallheaders": "^3.0",
"ircmaxell/random-lib": "^1.2",
"guzzlehttp/guzzle": "^6.5",
"subzerobo/sabalim-action-wrapper": "^1.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "11.3.*"
},
"suggest": {
"ext-xdebug": "Required for processing of request headers",
"ext-sockets" : "Required for sending payload using UDP to go middleware"
},
"autoload": {
"psr-4": {
"Subzerobo\\ElasticApmPhpAgent\\": "src/",
"" : "protoClasses"
}
}
}