forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (59 loc) · 2.01 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
{
"name": "openemr/openemr",
"description": "OpenEMR is a Free and Open Source electronic health records and medical practice management application",
"license": "GPL",
"support": {
"website": "http://www.open-emr.org/",
"issues": "https://github.com/openemr/openemr/issues",
"forum": "https://sourceforge.net/p/openemr/discussion/",
"wiki": "http://www.open-emr.org/wiki/index.php/OpenEMR_Wiki_Home_Page",
"source": "http://github.com/openemr/openemr"
},
"require": {
"adldap2/adldap2": "7.0.4",
"smarty/smarty": "2.6.29",
"adodb/adodb-php": "5.20.2",
"phpmailer/phpmailer": "5.2.16",
"rospdf/pdf-php": "0.12.22",
"phpseclib/phpseclib": "2.0.2",
"zendframework/zendframework": "2.4.9",
"phenx/php-font-lib": "0.4",
"phenx/php-svg-lib": "0.1",
"dompdf/dompdf": "0.7.0",
"doctrine/common": "2.5.0",
"doctrine/couchdb": "1.0-beta2",
"doctrine/orm": "2.5.5"
},
"require-dev": {
"phing/phing": "2.14.0"
},
"autoload": {
"exclude-from-classmap": ["library/classes/ClinicalTypes/",
"library/classes/rulesets/",
"library/classes/smtp/",
"library/classes/Prescription.class.php"
],
"classmap": ["library/classes"],
"files": [
"library/htmlspecialchars.inc.php",
"library/formdata.inc.php",
"library/sanitize.inc.php",
"library/date_functions.php",
"library/validation/validate_core.php",
"library/translation.inc.php"
],
"psr-4": {
"common\\": "common",
"common\\database\\": "common/database",
"common\\logging\\": "common/logging",
"entities\\": "entities",
"services\\": "services",
"repositories\\": "repositories"
}
},
"config": {
"preferred-install": {
"doctrine/couchdb": "dist"
}
}
}