improved prior 8.2 fix
[openemr.git] / composer.json
blob3635fdf4478e94856db3dce9cfbc0f1df110d051
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.4.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.21.3",
17         "aranyasen/hl7": "2.1.2",
18         "dompdf/dompdf": "1.1.1",
19         "ezyang/htmlpurifier": "4.13.0",
20         "google/apiclient": "2.12.0",
21         "guzzlehttp/guzzle": "7.4.0",
22         "kamermans/guzzle-oauth2-subscriber": "1.0.11",
23         "knplabs/knp-snappy": "1.3.1",
24         "laminas/laminas-config": "3.7.0",
25         "laminas/laminas-db": "2.13.4",
26         "laminas/laminas-eventmanager": "3.4.0",
27         "laminas/laminas-escaper": "2.9.0",
28         "laminas/laminas-filter": "2.12.0",
29         "laminas/laminas-form": "3.0.1",
30         "laminas/laminas-inputfilter": "2.12.1",
31         "laminas/laminas-json": "3.3.0",
32         "laminas/laminas-json-server": "3.3.0",
33         "laminas/laminas-loader": "2.8.0",
34         "laminas/laminas-mvc": "3.3.0",
35         "laminas/laminas-mvc-console": "1.3.0",
36         "laminas/laminas-mvc-i18n": "1.3.0",
37         "laminas/laminas-servicemanager": "3.10.0",
38         "laminas/laminas-soap": "2.10.0",
39         "laminas/laminas-stdlib": "3.6.1",
40         "laminas/laminas-xmlrpc": "2.11.0",
41         "lcobucci/jwt": "4.1.5",
42         "league/omnipay": "3.2.1",
43         "mobiledetect/mobiledetectlib": "2.8.37",
44         "monolog/monolog": "2.3.5",
45         "mpdf/mpdf": "8.0.15",
46         "nyholm/psr7": "1.4.1",
47         "nyholm/psr7-server": "1.0.2",
48         "omnipay/stripe": "3.1.0",
49         "paragonie/multi-factor": "0.2.2",
50         "particle/validator": "2.3.4",
51         "pear/archive_tar": "1.4.14",
52         "phpmailer/phpmailer": "6.5.3",
53         "phpoffice/phpspreadsheet": "1.20.0",
54         "phpseclib/phpseclib": "2.0.35",
55         "psr/log": "1.1.4",
56         "ramsey/uuid": "4.2.3",
57         "rospdf/pdf-php": "0.12.63",
58         "smarty/smarty": "2.6.33",
59         "steverhoades/oauth2-openid-connect-server": "2.4.0",
60         "stripe/stripe-php": "7.103.0",
61         "symfony/config": "4.4.34",
62         "symfony/dependency-injection": "4.4.34",
63         "symfony/event-dispatcher": "4.4.34",
64         "symfony/event-dispatcher-contracts": "1.1.9",
65         "symfony/http-foundation": "4.4.34",
66         "symfony/yaml": "4.4.34",
67         "twig/twig": "3.3.4",
68         "vlucas/phpdotenv": "5.4.0",
69         "waryway/php-traits-library": "1.0.4",
70         "yubico/u2flib-server": "1.0.2"
71     },
72     "config": {
73         "platform": {
74             "php": "7.4"
75         }
76     },
77     "require-dev": {
78         "phpunit/phpunit": "9.*",
79         "symfony/panther": "1.*",
80         "zircote/swagger-php": "^3.2"
81     },
82     "repositories": [
83         {
84             "type": "vcs",
85             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
86         },
87         {
88             "type": "git",
89             "url": "https://github.com/openemr/oe-module-cqm"
90         }
91     ],
92     "autoload": {
93         "exclude-from-classmap": [
94             "src/Common/Compatibility/Checker.php",
95             "library/classes/ClinicalTypes/",
96             "library/classes/rulesets/",
97             "library/classes/smtp/"
98         ],
99         "classmap": [
100             "library/classes"
101         ],
102         "files": [
103             "library/htmlspecialchars.inc.php",
104             "library/formdata.inc.php",
105             "library/sanitize.inc.php",
106             "library/formatting.inc.php",
107             "library/date_functions.php",
108             "library/validation/validate_core.php",
109             "library/translation.inc.php"
110         ],
111         "psr-4": {
112             "OpenEMR\\": "src"
113         }
114     },
115     "autoload-dev": {
116         "psr-4": {
117             "OpenEMR\\Tests\\": "tests\\Tests"
118         }
119     }