-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
72 lines (72 loc) · 1.71 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
63
64
65
66
67
68
69
70
71
72
{
"name": "contributte/newrelic",
"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.2",
"ext-newrelic": "*",
"nette/di": "^3.0.0",
"nette/application": "^3.1.0",
"tracy/tracy": "^2.8.0"
},
"require-dev": {
"contributte/console": "^0.9.0",
"contributte/event-dispatcher": "^0.8.0",
"ninjify/coding-standard": "^0.12",
"ninjify/nunjuck": "^0.4",
"mockery/mockery": "^1.3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Contributte\\NewRelic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ContributteTests\\NewRelic\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"suggest": {
"contributte/console": "For a nice formated newrelic logs from console commands",
"contributte/event-dispatcher": "For a nice formated newrelic logs from console commands"
},
"extra": {
"branch-alias": {
"dev-master": "9.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}