This repository has been archived by the owner on Sep 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
62 lines (62 loc) · 1.89 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
{
"name": "techdeco/elastic-apm-agent",
"description": "An agent for the Elastic Application Performance Monitoring server",
"type": "library",
"keywords": ["elastic", "apm", "monitoring", "performance"],
"license": "MIT",
"authors": [
{
"name": "Frank Koornstra",
"email": "frank@frankkoornstra.nl",
"homepage": "https://frankkoornstra.nl"
}
],
"minimum-stability": "stable",
"config": {
"platform": {
"php": "7.2.2"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.2",
"php-http/async-client-implementation": "^1.0",
"php-http/discovery": "^1.4",
"php-http/httplug": "^1.1",
"php-http/message-factory": "^1.0",
"php-http/message-factory-implementation": "^1.0",
"psr/cache": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log-implementation": "^1.0",
"psr/log": "^1.0",
"ramsey/uuid": "^3.7"
},
"require-dev": {
"behat/behat": "^3.4",
"cache/array-adapter": "^1.0",
"gamez/psr-testlogger": "^2.0",
"infection/infection": "^0.10.0",
"jangregor/phpstan-prophecy": "^0.2.0",
"lcobucci/behat-di-builder-extension": "^0.1.1",
"lcobucci/di-builder": "^5.3",
"northwoods/broker": "^2.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message": "^1.6",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-phpunit": "^0.10.0",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0",
"techdeco/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"TechDeCo\\ElasticApmAgent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TechDeCo\\ElasticApmAgent\\Tests\\": "tests"
}
}
}