-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
73 lines (73 loc) · 1.64 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
73
{
"name": "pd/monitoring",
"license": "GPL-3.0",
"description": "Monitoring webových aplikací",
"type": "project",
"authors": [
{
"name": "Milan Pála",
"email": "milan.pala@peckadesign.cz"
}
],
"require": {
"php": "7.4.*",
"ext-mbstring": "*",
"ext-bcmath": "*",
"ext-zip": "*",
"ext-curl": "*",
"ext-mysqli": "*",
"ext-xml": "*",
"ext-json": "*",
"nette/application": "3.1.*",
"nette/forms": "3.1.*",
"nette/bootstrap": "3.1.*",
"nette/security": "3.1.*",
"nette/utils": "3.2.*",
"latte/latte": "2.10.*",
"tracy/tracy": "2.8.*",
"nextras/orm": "3.1.*",
"nextras/migrations": "3.0.*",
"kdyby/console": "2.8.*",
"guzzlehttp/guzzle": "7.0.*",
"league/oauth2-github": "2.0.*",
"kdyby/rabbitmq": "dev-upgrade-nette@dev",
"nette/mail": "3.1.*",
"nextras/form-components": "1.0.*",
"nextras/forms-rendering": "1.0.*",
"ublaboo/datagrid": "6.8.*",
"atrox/matcher": "^1.1",
"elasticsearch/elasticsearch": "7.9.*",
"pd/monolog-module": "5.0.*",
"monolog/monolog": "2.1.*",
"ublaboo/datagrid-elasticsearch-data-source": "2.1.*"
},
"require-dev": {
"pd/coding-standard": "1.27.*",
"phpstan/phpstan": "0.12.*",
"phpstan/phpstan-strict-rules": "0.12.*",
"phpstan/phpstan-nette": "0.12.*",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Pd\\Monitoring\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Pd\\Monitoring\\": "tests/phpunit"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/VBoss/RabbitMQ"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}