New use RxNORM table for drug lookups. (#4399)
[openemr.git] / composer.json
blobfca5026f140858fe6c729738145f8be8e49cfa02
2     "name": "openemr/openemr",
3     "version": "6.0.0",
4     "description": "OpenEMR is a Free and Open Source electronic health records and medical practice management application",
5     "license": "GPL",
6     "support": {
7         "website": "https://www.open-emr.org/",
8         "issues": "https://github.com/openemr/openemr/issues",
9         "forum": "https://community.open-emr.org/",
10         "wiki": "https://www.open-emr.org/wiki/index.php/OpenEMR_Wiki_Home_Page",
11         "source": "https://github.com/openemr/openemr"
12     },
13     "require": {
14         "php": ">=7.3.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.21.0",
17         "dompdf/dompdf": "1.0.2",
18         "ezyang/htmlpurifier": "4.13.0",
19         "guzzlehttp/guzzle": "7.3.0",
20         "kamermans/guzzle-oauth2-subscriber": "1.0.8",
21         "knplabs/knp-snappy": "1.2.1",
22         "laminas/laminas-config": "3.5.0",
23         "laminas/laminas-db": "2.12.0",
24         "laminas/laminas-eventmanager": "3.3.1",
25         "laminas/laminas-escaper": "2.7.0",
26         "laminas/laminas-filter": "2.11.0",
27         "laminas/laminas-form": "2.16.3",
28         "laminas/laminas-inputfilter": "2.12.0",
29         "laminas/laminas-json": "3.2.0",
30         "laminas/laminas-json-server": "3.3.0",
31         "laminas/laminas-loader": "2.7.0",
32         "laminas/laminas-mvc": "3.2.0",
33         "laminas/laminas-mvc-console": "1.3.0",
34         "laminas/laminas-mvc-i18n": "1.2.0",
35         "laminas/laminas-servicemanager": "3.6.4",
36         "laminas/laminas-soap": "2.9.0",
37         "laminas/laminas-stdlib": "3.3.1",
38         "laminas/laminas-xmlrpc": "2.10.0",
39         "league/omnipay": "3.1.0",
40         "mobiledetect/mobiledetectlib": "2.8.37",
41         "mpdf/mpdf": "8.0.10",
42         "omnipay/stripe": "3.1.0",
43         "paragonie/multi-factor": "0.2.2",
44         "particle/validator": "2.3.4",
45         "pear/archive_tar": "1.4.13",
46         "phpmailer/phpmailer": "6.4.1",
47         "phpoffice/phpspreadsheet": "1.17.1",
48         "phpseclib/phpseclib": "2.0.31",
49         "ramsey/uuid": "4.1.1",
50         "rospdf/pdf-php": "0.12.63",
51         "smarty/smarty": "2.6.31",
52         "symfony/config": "4.4.20",
53         "symfony/dependency-injection": "4.4.20",
54         "symfony/event-dispatcher": "4.4.20",
55         "symfony/http-foundation": "4.4.20",
56         "symfony/yaml": "4.4.20",
57         "twig/twig": "3.3.0",
58         "vlucas/phpdotenv": "5.3.0",
59         "waryway/php-traits-library": "1.0.4",
60         "yubico/u2flib-server": "1.0.2",
61         "steverhoades/oauth2-openid-connect-server": "2.0.0",
62         "nyholm/psr7": "1.4.0",
63         "nyholm/psr7-server": "1.0.1",
64         "lcobucci/jwt": "dev-345php8 as 3.4.9",
65         "psr/log": "1.1.3",
66         "monolog/monolog": "2.2.0",
67         "google/apiclient": "2.9.1"
68     },
69     "config": {
70         "platform": {
71             "php": "7.3"
72         }
73     },
74     "require-dev": {
75         "phpunit/phpunit": "9.*",
76         "symfony/panther": "1.*"
77     },
78     "repositories": [
79         {
80             "type": "vcs",
81             "url": "https://github.com/openemr/jwt"
82         },
83         {
84             "type": "vcs",
85             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
86         }
87     ],
88     "autoload": {
89         "exclude-from-classmap": [
90             "src/Common/Compatibility/Checker.php",
91             "library/classes/ClinicalTypes/",
92             "library/classes/rulesets/",
93             "library/classes/smtp/"
94         ],
95         "classmap": [
96             "library/classes"
97         ],
98         "files": [
99             "library/htmlspecialchars.inc.php",
100             "library/formdata.inc.php",
101             "library/sanitize.inc.php",
102             "library/formatting.inc.php",
103             "library/date_functions.php",
104             "library/validation/validate_core.php",
105             "library/translation.inc.php"
106         ],
107         "psr-4": {
108             "OpenEMR\\": "src"
109         }
110     },
111     "autoload-dev": {
112         "psr-4": {
113             "OpenEMR\\Tests\\": "tests\\Tests"
114         }
115     }