Improved Code Sniffing (#928)
[openemr.git] / composer.json
blob7fa201f06f4deaedae2e07a84016d3786b4e1c1f
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         "vlucas/phpdotenv": "2.4",
30         "symfony/config": "2.8.*",
31         "symfony/dependency-injection": "2.8.*",
32         "symfony/event-dispatcher": "2.8.*",
33         "symfony/http-foundation": "2.8.*",
34         "symfony/yaml": "2.8.*",
35         "phpoffice/phpexcel": "1.8.1",
36         "ezyang/htmlpurifier": "4.9.3"
38     },
39     "require-dev": {
41         "phing/phing": "2.14.0",
42         "phpunit/phpunit": "5.7"
44     },
45     "autoload": {
46         "exclude-from-classmap": ["library/classes/ClinicalTypes/",
47             "library/classes/rulesets/",
48             "library/classes/smtp/",
49             "library/classes/Prescription.class.php"
50         ],
51         "classmap": ["library/classes"],
52         "files": [
53             "library/htmlspecialchars.inc.php",
54             "library/formdata.inc.php",
55             "library/sanitize.inc.php",
56             "library/formatting.inc.php",
57             "library/date_functions.php",
58             "library/validation/validate_core.php",
59             "library/translation.inc.php"
60         ],
61         "psr-4": {
62             "common\\": "common",
63             "common\\database\\": "common/database",
64             "common\\logging\\": "common/logging",
65             "common\\http\\": "common/http",
66             "common\\utils\\": "common/utils",
67             "entities\\": "entities",
68             "services\\": "services",
69             "repositories\\": "repositories",
70             "OpenEMR\\Encounter\\Services\\": "interface/patient_file/encounter/Services",
71             "OpenEMR\\Admin\\": "library/admin/src",
72             "OpenEMR\\Core\\": "library/core/src",
73             "OpenEMR\\Menu\\": "library/menu",
74             "OpenEMR\\Calendar\\": "library/calendar/src",
75             "OpenEMR\\Sample\\": "library/sample/src"
76         }
77     },
78     "config": {
79         "preferred-install": {
80             "doctrine/couchdb": "dist"
81         }
82     }