Allow zend hooks to admin (#581)
[openemr.git] / composer.json
blobb16e1e17c84a858e98f5bf495b45aa5a09d1a7da
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         "adldap2/adldap2": "7.0.4",
15         "smarty/smarty": "2.6.29",
16         "adodb/adodb-php": "5.20.9",
17         "phpmailer/phpmailer": "5.2.16",
18         "rospdf/pdf-php": "0.12.22",
19         "phpseclib/phpseclib": "2.0.2",
20         "zendframework/zendframework": "2.4.9",
21         "phenx/php-font-lib": "0.4",
22         "phenx/php-svg-lib": "0.1",
23         "dompdf/dompdf": "0.7.0",
24         "doctrine/common": "2.5.0",
25         "doctrine/couchdb": "1.0-beta2",
26         "doctrine/orm": "2.5.5"
28     },
29     "require-dev": {
31         "phing/phing": "2.14.0"
33     },
34     "autoload": {
35         "exclude-from-classmap": ["library/classes/ClinicalTypes/",
36             "library/classes/rulesets/",
37             "library/classes/smtp/",
38             "library/classes/Prescription.class.php"
39         ],
40         "classmap": ["library/classes"],
41         "files": [
42             "library/htmlspecialchars.inc.php",
43             "library/formdata.inc.php",
44             "library/sanitize.inc.php",
45             "library/formatting.inc.php",
46             "library/date_functions.php",
47             "library/validation/validate_core.php",
48             "library/translation.inc.php"
49         ],
50         "psr-4": {
51             "common\\": "common",
52             "common\\database\\": "common/database",
53             "common\\logging\\": "common/logging",
54             "entities\\": "entities",
55             "services\\": "services",
56             "repositories\\": "repositories"
57         }
58     },
59     "config": {
60         "preferred-install": {
61             "doctrine/couchdb": "dist"
62         }
63     }