-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
38 lines (38 loc) · 931 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
{
"name": "intouch/newrelic",
"type": "library",
"keywords": ["NewRelic", "New Relic"],
"homepage": "http://github.com/In-Touch/newrelic/",
"license": "Apache-2.0",
"description": "Namespaced Wrapper for NewRelic PHP Agent",
"authors": [
{
"name": "Patrick Leckey",
"email": "pleckey@intouchinsight.com"
},
{
"name": "Luke Waite",
"email": "lwaite@intouchinsight.com"
}
],
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Intouch\\Newrelic\\": "src"
}
},
"scripts": {
"cs": "phpcs --standard=psr2 src/",
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}