forked from philkra/elastic-apm-php-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1005 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 1005 Bytes
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
{
"name" : "philkra/elastic-apm-php-agent",
"description": "A php agent for Elastic APM",
"license": "MIT",
"require" : {
"php" : ">= 7.0",
"guzzlehttp/guzzle": "6.*",
"ramsey/uuid": "^3.7",
"ralouphie/getallheaders": "2.0.5",
"ext-curl" : "*"
},
"require-dev" : {
"phpunit/phpunit" : "6.*"
},
"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" : "philip@philipkrauss.at",
"homepage" : "https://github.com/philkra/elastic-apm-agent-php"
},
{
"name" : "George Boot",
"email": "george@entryninja.com"
}
]
}