Added date time to list_options for modification control (#450)
[openemr.git] / composer.json
blob71b2899cefc0884b44706ba27446b76b62ffc310
2     "name": "openemr/openemr",
3     "description": "OpenEMR is a Free and Open Source electronic health records and medical practice management application",
4     "license": "GPL",
5     "support": {
6         "website": "http://www.open-emr.org/",
7         "issues": "https://github.com/openemr/openemr/issues",
8         "forum": "https://sourceforge.net/p/openemr/discussion/",
9         "wiki": "http://www.open-emr.org/wiki/index.php/OpenEMR_Wiki_Home_Page",
10         "source": "http://github.com/openemr/openemr"
11     },
12     "require": {
14         "smarty/smarty": "2.6.29",
15         "adodb/adodb-php": "5.20.2",
16         "phpmailer/phpmailer": "5.2.16",
17         "rospdf/pdf-php": "0.12.22",
18         "phpseclib/phpseclib": "2.0.2",
19         "zendframework/zendframework": "2.4.9",
20         "phenx/php-font-lib": "0.4",
21         "phenx/php-svg-lib": "0.1",
22         "dompdf/dompdf": "0.7.0",
23         "doctrine/common": "2.5.0",
24         "doctrine/couchdb": "1.0-beta2",
25         "doctrine/orm": "2.5.5"
27     },
28     "require-dev": {
30         "phing/phing": "2.14.0"
32     },
33     "autoload": {
34         "exclude-from-classmap": ["library/classes/ClinicalTypes/",
35             "library/classes/rulesets/",
36             "library/classes/smtp/",
37             "library/classes/Prescription.class.php"
38         ],
39         "classmap": ["library/classes"],
40         "files": [
41             "library/htmlspecialchars.inc.php",
42             "library/formdata.inc.php",
43             "library/sanitize.inc.php",
44             "library/date_functions.php",
45             "library/validation/validate_core.php",
46             "library/translation.inc.php"
47         ],
48         "psr-4": {
49             "common\\": "common",
50             "common\\database\\": "common/database",
51             "common\\logging\\": "common/logging",
52             "entities\\": "entities",
53             "services\\": "services",
54             "repositories\\": "repositories"
55         }
56     },
57     "config": {
58         "preferred-install": {
59             "doctrine/couchdb": "dist"
60         }
61     }