-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
87 lines (87 loc) · 2.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "whotrades/rds",
"type": "service",
"authors": [
{
"name": "Artem Naumenko",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Anton Gorlanov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Maksim Rodikov",
"email": "[email protected]",
"role": "Developer"
}
],
"description": "WhoTrades release deployment service",
"autoload": {
"psr-4": {
"whotrades\\rds\\": "src/"
}
},
"require": {
"kartik-v/yii2-grid": "~3.1",
"react/zmq": "~0.3",
"php-amqplib/php-amqplib": "2.7.1",
"whotrades/rds-system": "~1.0.9",
"yiisoft/yii2": "^2.0.39.3",
"yiisoft/yii2-bootstrap": "~2.0",
"yiisoft/yii2-gii": "~2.0.0",
"php": ">=7.2",
"yiisoft/yii2-swiftmailer": "~2.0",
"dektrium/yii2-user": "0.9.14",
"conquer/codemirror": "~2.0",
"kartik-v/yii2-widget-select2": "2.0.9",
"codemix/yii2-streamlog": "1.2.1",
"bazilio/yii2-stubs-generator": "~1",
"dektrium/yii2-rbac": "^1.0",
"tuyakhov/yii2-notifications": "^1.2",
"npm-asset/i18next": "~19.8.4",
"npm-asset/i18next-icu": "~1.4.2",
"npm-asset/i18next-http-backend": "~1.0.21",
"ext-json": "*",
"ext-intl": "*",
"ext-pdo": "*",
"ext-zmq": "*",
"samdark/yii2-psr-log-target": "~1.1.3",
"monolog/monolog": "^1.2.5|^2.7"
},
"require-dev": {
"yiisoft/yii2-debug": "2.0.9",
"phpunit/phpunit": "~9.3.0"
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"fxp/composer-asset-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"php yii.php translation/generate"
],
"post-update-cmd": [
"php yii.php translation/generate"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}