-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
99 lines (99 loc) · 2.97 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "medkey/medkey",
"description": "Medkey Healthcare Information System",
"keywords": ["medkey", "his", "healthcare", "application", "ehr", "emr"],
"homepage": "https://www.medkey.org",
"type": "application",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Dzhamal Tayibov",
"email": "[email protected]",
"homepage": "http://www.medkey.org",
"role": "Founder and core developer"
},
{
"name": "Dmitry Grudinin",
"email": "[email protected]",
"homepage": "http://www.medkey.org",
"role": "Founder and project lead"
}
],
"support": {
"email": "[email protected]",
"wiki": "https://medkey.org/wiki",
"chat": "https://t.me/medkey_talks"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "git",
"url": "https://github.com/medkey-org/composer-plugin.git"
}
],
"require": {
"php": "^7.1.3",
"yiisoft/yii2": "2.0.15.1",
"yiisoft/yii2-bootstrap": "2.0.8",
"yiisoft/yii2-jui": "2.0.7",
"yiisoft/yii2-queue": "~2.0",
"medkey/composer-plugin": "dev-master",
"kartik-v/yii2-widget-datepicker": "v1.4.3",
"kartik-v/yii2-widget-datetimepicker": "v1.4.4",
"kartik-v/yii2-widget-select2": "v2.1.1",
"kartik-v/yii2-widget-timepicker": "v1.0.3",
"unclead/yii2-multiple-input": "2.14.0",
"moneyphp/money": "3.*",
"symfony/expression-language": "4.2.*",
"symfony/workflow": "4.2.*",
"symfony/dotenv": "4.2.*",
"symfony/config": "4.2.*",
"zendframework/zend-permissions-acl": "2.7",
"npm-asset/backbone": "1.3.3",
"npm-asset/underscore": "1.8.3",
"machour/yii2-jquery-flot": "^1.0@dev"
},
"require-dev": {
"composer/composer": "*",
"codeception/codeception": "*",
"phpunit/phpunit": "*",
"stecman/symfony-console-completion": "*",
"symfony/console": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
"config": {
"process-timeout": 9999,
"disable-tls": true,
"secure-http": false,
"fxp-asset": {
"enabled": false
}
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"bin": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
}
},
"autoload": {
"psr-4": { "app\\common\\": "common"}
}
}