forked from nipwaayoni/elastic-apm-php-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.54 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
{
"name" : "nipwaayoni/elastic-apm-php-agent",
"description": "A php agent for Elastic APM v2 Intake API",
"license": "MIT",
"require" : {
"php" : ">= 7.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"php-http/discovery": "^1.7",
"ralouphie/getallheaders": "2.*|3.*",
"ext-curl" : "*",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"php-http/guzzle6-adapter": "^2.0",
"http-interop/http-factory-guzzle": "^1.0",
"justinrainbow/json-schema": "^5.2",
"psr/log": "^1.1"
},
"suggest": {
"php-http/guzzle6-adapter": "PSR-18 compatible Guzzle6 adapter",
"http-interop/http-factory-guzzle": "PSR-17 compatible factories for usage with PSR-18"
},
"autoload" : {
"psr-4" : {
"Nipwaayoni\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nipwaayoni\\Tests\\": "tests/"
}
},
"config" : {
"optimize-autoloader" : true
},
"authors" : [
{
"name" : "Dirk Tepe",
"email" : "dstepe@gmail.com",
"homepage" : "https://github.com/dstepe"
}
],
"scripts": {
"cs-fix": "\"./tools/php-cs-fixer\" --config=config/php-cs-fixer.php fix src/ tests/",
"ci:tests": "\"tools/phpunit\" tests/",
"ci:cs-check": "\"./tools/php-cs-fixer\" --config=config/php-cs-fixer.php fix --dry-run -v --show-progress=dots --diff-format=udiff src/ tests/"
}
}