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