forked from nathanielks/newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "djstarcom/newrelic",
"description": "NewRelic Tools for PHP",
"license": "MIT",
"authors": [
{
"name": "Stanislav Tsepeniuk",
"email": "[email protected]",
"homepage": "https://github.com/DJStarCOM",
"role": "Developer"
},
{
"name": "Marcelo Milhomem",
"email": "[email protected]",
"homepage": "http://easytaxi.com",
"role": "Engineer"
}
],
"autoload": {
"psr-4" : {
"DJStarCOM\\NewRelic\\" : "src"
}
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.1",
"Respect/Validation": "~1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^2.4"
},
"autoload-dev": {
"psr-4" : {
"DJStarCOM\\NewRelic\\" : "tests"
}
}
}