forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
83 lines (83 loc) · 3.13 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
{
"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" : {
"php" : ">=5.6.0",
"mpdf/mpdf" : "7.1.0",
"adldap2/adldap2" : "8.1.5",
"smarty/smarty" : "2.6.31",
"adodb/adodb-php" : "5.20.12",
"phpmailer/phpmailer" : "6.0.5",
"rospdf/pdf-php" : "0.12.46",
"phpseclib/phpseclib" : "2.0.11",
"zendframework/zendframework" : "2.5.3",
"dompdf/dompdf" : "0.8.2",
"doctrine/common" : "2.7.3",
"doctrine/couchdb" : "1.0-beta4",
"doctrine/orm" : "2.5.14",
"twig/twig" : "1.35.3",
"vlucas/phpdotenv" : "2.4.0",
"symfony/config" : "2.8.42",
"symfony/dependency-injection" : "2.8.42",
"symfony/event-dispatcher" : "2.8.42",
"symfony/http-foundation" : "2.8.42",
"symfony/yaml" : "2.8.42",
"ezyang/htmlpurifier" : "4.10.0",
"knplabs/knp-snappy" : "1.0.4",
"stripe/stripe-php" : "6.10.0",
"phpoffice/phpspreadsheet": "1.3.1",
"mobiledetect/mobiledetectlib": "2.8.32"
},
"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\\Tabs\\" : "library/tabs/src",
"OpenEMR\\Rx\\Weno\\" : "library/weno/src"
}
}
}