fix: ccda zip import and php warnings and deprecations (#7416)
[openemr.git] / composer.json
blob40086da4bb5aa913bf6155ebff7422a852624d86
2     "name": "openemr/openemr",
3     "version": "7.0.3",
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": ">=8.1.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.22.6",
17         "aranyasen/hl7": "3.1.1",
18         "bacon/bacon-qr-code": "2.0.7",
19         "digitickets/lalit": "3.3.0",
20         "dompdf/dompdf": "2.0.3",
21         "ezyang/htmlpurifier": "4.16.0",
22         "google/apiclient": "2.15.1",
23         "guzzlehttp/guzzle": "7.8.0",
24         "html2text/html2text": "4.3.1",
25         "kamermans/guzzle-oauth2-subscriber": "1.0.13",
26         "knplabs/knp-snappy": "1.4.4",
27         "laminas/laminas-config": "3.9.0",
28         "laminas/laminas-db": "2.18.0",
29         "laminas/laminas-eventmanager": "3.12.0",
30         "laminas/laminas-escaper": "2.13.0",
31         "laminas/laminas-filter": "2.33.0",
32         "laminas/laminas-form": "3.13.1",
33         "laminas/laminas-inputfilter": "2.28.0",
34         "laminas/laminas-json": "3.6.0",
35         "laminas/laminas-json-server": "3.8.0",
36         "laminas/laminas-loader": "2.10.0",
37         "laminas/laminas-mvc": "3.6.1",
38         "laminas/laminas-mvc-i18n": "1.7.0",
39         "laminas/laminas-servicemanager": "3.22.1",
40         "laminas/laminas-soap": "2.13.0",
41         "laminas/laminas-stdlib": "3.18.0",
42         "laminas/laminas-xmlrpc": "2.17.0",
43         "lcobucci/jwt": "4.2.1",
44         "league/csv": "9.8.0",
45         "league/omnipay": "3.2.1",
46         "mobiledetect/mobiledetectlib": "3.74.3",
47         "monolog/monolog": "3.5.0",
48         "mpdf/mpdf": "8.2.0",
49         "nyholm/psr7": "1.8.0",
50         "nyholm/psr7-server": "1.0.2",
51         "omnipay/stripe": "3.2.0",
52         "openemr/mustache": "2.15.2",
53         "particle/validator": "2.3.5",
54         "pear/archive_tar": "1.4.14",
55         "phpmailer/phpmailer": "6.8.1",
56         "phpoffice/phpspreadsheet": "1.29.0",
57         "phpseclib/phpseclib": "3.0.36",
58         "php81_bc/strftime": "0.5.0",
59         "php-http/discovery": "1.19.1",
60         "psr/log": "2.0.0",
61         "ramsey/uuid": "4.7.4",
62         "robthree/twofactorauth": "2.0.0",
63         "rospdf/pdf-php": "0.12.67",
64         "smarty/smarty": "4.3.4",
65         "steverhoades/oauth2-openid-connect-server": "2.6.1",
66         "stripe/stripe-php": "13.2.0",
67         "symfony/config": "5.4.26",
68         "symfony/console": "5.4.28",
69         "symfony/dependency-injection": "5.4.29",
70         "symfony/event-dispatcher": "5.4.26",
71         "symfony/finder": "5.4.27",
72         "symfony/filesystem": "5.4.25",
73         "symfony/http-client": "5.4.29",
74         "symfony/http-foundation": "5.4.30",
75         "symfony/yaml": "5.4.30",
76         "twig/twig": "3.7.1",
77         "vlucas/phpdotenv": "5.5.0",
78         "waryway/php-traits-library": "1.0.4",
79         "yubico/u2flib-server": "1.0.2",
80         "twilio/sdk": "7.12.0"
81     },
82     "config": {
83         "platform": {
84             "php": "8.1"
85         },
86         "allow-plugins": {
87             "openemr/oe-module-installer-plugin": true,
88             "php-http/discovery": false
89         }
90     },
91     "require-dev": {
92         "phpunit/phpunit": "10.*",
93         "symfony/panther": "2.*",
94         "zircote/swagger-php": "3.*"
95     },
96     "repositories": [
97         {
98             "type": "vcs",
99             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
100         },
101         {
102             "type": "git",
103             "url": "https://github.com/openemr/oe-module-cqm"
104         }
105     ],
106     "autoload": {
107         "exclude-from-classmap": [
108             "src/Common/Compatibility/Checker.php",
109             "library/classes/ClinicalTypes/",
110             "library/classes/rulesets/",
111             "library/classes/smtp/"
112         ],
113         "classmap": [
114             "library/classes"
115         ],
116         "files": [
117             "library/htmlspecialchars.inc.php",
118             "library/formdata.inc.php",
119             "library/sanitize.inc.php",
120             "library/formatting.inc.php",
121             "library/date_functions.php",
122             "library/validation/validate_core.php",
123             "library/translation.inc.php"
124         ],
125         "psr-4": {
126             "OpenEMR\\": "src"
127         }
128     },
129     "autoload-dev": {
130         "psr-4": {
131             "OpenEMR\\Tests\\": "tests\\Tests"
132         }
133     }