forked from philkra/elastic-apm-php-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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
{
"name" : "wizaplace/elastic-apm-php-agent",
"description": "A php agent for Elastic APM v2 Intake API",
"license": "MIT",
"require" : {
"php" : ">= 7.2",
"guzzlehttp/guzzle": "6.*",
"ralouphie/getallheaders": "3.*",
"ext-curl" : "*",
"ext-json": "*"
},
"require-dev" : {
"phpunit/phpunit" : "7.*"
},
"suggest": {
"ext-xdebug": "Required for processing of request headers"
},
"autoload" : {
"psr-4" : {
"PhilKra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhilKra\\Tests\\": "tests/"
}
},
"config" : {
"optimize-autoloader" : true
},
"authors" : [
{
"name" : "Philip Krauss",
"email" : "[email protected]",
"homepage" : "https://github.com/philkra"
},
{
"name" : "George Boot",
"email": "[email protected]"
},
{
"name" : "Mohamed Al Ashaal",
"email" : "[email protected]",
"homepage" : "https://github.com/speakol-ads"
}
]
}