forms.php modern jquery compatible
[openemr.git] / composer.json
blob551fb689a350aca739321f3144098b877a0e63ac
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://community.open-emr.org/",
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         "mpdf/mpdf": "6.1.3",
15         "adldap2/adldap2": "7.0.4",
16         "smarty/smarty": "2.6.29",
17         "adodb/adodb-php": "5.20.9",
18         "phpmailer/phpmailer": "5.2.16",
19         "rospdf/pdf-php": "0.12.22",
20         "phpseclib/phpseclib": "2.0.2",
21         "zendframework/zendframework": "2.4.9",
22         "phenx/php-font-lib": "0.4",
23         "phenx/php-svg-lib": "0.1",
24         "dompdf/dompdf": "0.7.0",
25         "doctrine/common": "2.5.0",
26         "doctrine/couchdb": "1.0-beta2",
27         "doctrine/orm": "2.5.5",
28         "twig/twig": "1.33.*",
29         "symfony/http-foundation": "2.8.*",
30         "vlucas/phpdotenv": "2.4",
31         "symfony/yaml": "2.8.*",
32         "phpoffice/phpexcel": "1.8.1",
33         "ezyang/htmlpurifier": "4.9.3"
35     },
36     "require-dev": {
38         "phing/phing": "2.14.0",
39         "phpunit/phpunit": "5.7"
41     },
42     "autoload": {
43         "exclude-from-classmap": ["library/classes/ClinicalTypes/",
44             "library/classes/rulesets/",
45             "library/classes/smtp/",
46             "library/classes/Prescription.class.php"
47         ],
48         "classmap": ["library/classes"],
49         "files": [
50             "library/htmlspecialchars.inc.php",
51             "library/formdata.inc.php",
52             "library/sanitize.inc.php",
53             "library/formatting.inc.php",
54             "library/date_functions.php",
55             "library/validation/validate_core.php",
56             "library/translation.inc.php"
57         ],
58         "psr-4": {
59             "common\\": "common",
60             "common\\database\\": "common/database",
61             "common\\logging\\": "common/logging",
62             "common\\http\\": "common/http",
63             "common\\utils\\": "common/utils",
64             "entities\\": "entities",
65             "services\\": "services",
66             "repositories\\": "repositories",
67             "OpenEMR\\Encounter\\Services\\": "interface/patient_file/encounter/Services",
68             "OpenEMR\\Core\\": "library/core/src"
69         }
70     },
71     "config": {
72         "preferred-install": {
73             "doctrine/couchdb": "dist"
74         }
75     }