forked from contributte/newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.25 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
{
"name": "contributte/newrelic",
"type": "library",
"description": "NewRelic PHP agent integration for Nette Framework",
"keywords": ["nette", "newrelic", "monitoring"],
"homepage": "https://github.com/contributte/newrelic",
"license": "MIT",
"authors": [
{
"name": "Patrik Votoček",
"homepage": "http://patrik.votocek.cz"
},
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
},
{
"name": "Tomáš Jacík",
"homepage": "https://tomasjacik.cz"
}
],
"support": {
"issues": "https://github.com/contributte/newrelic/issues"
},
"require": {
"php": ">=7.1",
"nette/di": "~3.0",
"nette/application": "~3.0",
"tracy/tracy": "~2.7"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"ninjify/coding-standard": "^0.9.0"
},
"autoload": {
"psr-4": {
"Contributte\\NewRelic\\": "src"
}
},
"scripts": {
"lint": "vendor/bin/parallel-lint -e php,phpt src",
"cs": "vendor/bin/phpcs --standard=vendor/ninjify/coding-standard/ruleset-gamee.xml --extensions=php,phpt --tab-width=4 -sp src",
"csfix": "vendor/bin/phpcbf --standard=vendor/ninjify/coding-standard/ruleset-gamee.xml --extensions=php,phpt --tab-width=4 -sp src"
},
"archive": {
"exclude": [
".gitignore",
"/.travis.yml"
]
}
}