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