minor improvement to tabs style
[openemr.git] / composer.json
blobcd69cea271ecbdfb7a26d4ae2e670e2093296885
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.20",
30         "vlucas/phpdotenv": "2.4"
32     },
33     "require-dev": {
35         "phing/phing": "2.14.0",
36         "phpunit/phpunit": "5.7"
38     },
39     "autoload": {
40         "exclude-from-classmap": ["library/classes/ClinicalTypes/",
41             "library/classes/rulesets/",
42             "library/classes/smtp/",
43             "library/classes/Prescription.class.php"
44         ],
45         "classmap": ["library/classes"],
46         "files": [
47             "library/htmlspecialchars.inc.php",
48             "library/formdata.inc.php",
49             "library/sanitize.inc.php",
50             "library/formatting.inc.php",
51             "library/date_functions.php",
52             "library/validation/validate_core.php",
53             "library/translation.inc.php"
54         ],
55         "psr-4": {
56             "common\\": "common",
57             "common\\database\\": "common/database",
58             "common\\logging\\": "common/logging",
59             "common\\http\\": "common/http",
60             "common\\utils\\": "common/utils",
61             "entities\\": "entities",
62             "services\\": "services",
63             "repositories\\": "repositories",
64             "OpenEMR\\Encounter\\Services\\": "interface/patient_file/encounter/Services"
65         }
66     },
67     "config": {
68         "preferred-install": {
69             "doctrine/couchdb": "dist"
70         }
71     }