forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 3.17 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" : "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://community.open-emr.org/",
"wiki" : "http://www.open-emr.org/wiki/index.php/OpenEMR_Wiki_Home_Page",
"source" : "http://github.com/openemr/openemr"
},
"require" : {
"mpdf/mpdf" : "6.1.3",
"adldap2/adldap2" : "7.0.4",
"smarty/smarty" : "2.6.*",
"adodb/adodb-php" : "5.20.9",
"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",
"twig/twig" : "1.33.*",
"vlucas/phpdotenv" : "2.4",
"symfony/config" : "2.8.*",
"symfony/dependency-injection" : "2.8.*",
"symfony/event-dispatcher" : "2.8.*",
"symfony/http-foundation" : "2.8.*",
"symfony/yaml" : "2.8.*",
"phpoffice/phpexcel" : "1.8.1",
"ezyang/htmlpurifier" : "4.9.3",
"knplabs/knp-snappy" : "^0.5.0",
"stripe/stripe-php" : "5.2.0"
},
"require-dev" : {
},
"repositories" : [{
"type" : "vcs",
"url" : "https://github.com/openemr/wkhtmltopdf-openemr"
}
],
"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/formatting.inc.php",
"library/date_functions.php",
"library/validation/validate_core.php",
"library/translation.inc.php"
],
"psr-4" : {
"OpenEMR\\Common\\" : "common",
"OpenEMR\\Entities\\" : "entities",
"OpenEMR\\Services\\" : "services",
"OpenEMR\\Repositories\\" : "repositories",
"OpenEMR\\Encounter\\Services\\" : "interface/patient_file/encounter/Services",
"OpenEMR\\Admin\\" : "library/admin/src",
"OpenEMR\\Core\\" : "library/core/src",
"OpenEMR\\Menu\\" : "library/menu/src",
"OpenEMR\\Calendar\\" : "library/calendar/src",
"OpenEMR\\Sample\\" : "library/sample/src",
"OpenEMR\\Reminder\\" : "library/reminder/src",
"OpenEMR\\Billing\\" : "library/billing/src",
"OpenEMR\\Pdf\\" : "library/pdf/src",
"OpenEMR\\Rx\\Weno\\" : "library/weno/src"
}
},
"config" : {
"preferred-install" : {
"doctrine/couchdb" : "dist"
}
}
}