fixes
[openemr.git] / composer.json
blob74745bfac4c58f9bff8d7f07d2fe9b8721b3f792
2     "name": "openemr/openemr",
3     "version": "7.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": ">=8.0.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.22.4",
17         "aranyasen/hl7": "2.1.7",
18         "bacon/bacon-qr-code": "2.0.7",
19         "digitickets/lalit": "3.3.0",
20         "dompdf/dompdf": "2.0.1",
21         "ezyang/htmlpurifier": "4.16.0",
22         "google/apiclient": "2.12.6",
23         "guzzlehttp/guzzle": "7.5.0",
24         "html2text/html2text": "4.3.1",
25         "kamermans/guzzle-oauth2-subscriber": "1.0.12",
26         "knplabs/knp-snappy": "1.4.1",
27         "laminas/laminas-config": "3.8.0",
28         "laminas/laminas-db": "2.16.1",
29         "laminas/laminas-eventmanager": "3.8.0",
30         "laminas/laminas-escaper": "2.12.0",
31         "laminas/laminas-filter": "2.29.0",
32         "laminas/laminas-form": "3.8.0",
33         "laminas/laminas-inputfilter": "2.22.1",
34         "laminas/laminas-json": "3.5.0",
35         "laminas/laminas-json-server": "3.7.0",
36         "laminas/laminas-loader": "2.9.0",
37         "laminas/laminas-mvc": "3.6.0",
38         "laminas/laminas-mvc-i18n": "1.7.0",
39         "laminas/laminas-servicemanager": "3.20.0",
40         "laminas/laminas-soap": "2.11.1",
41         "laminas/laminas-stdlib": "3.16.1",
42         "laminas/laminas-xmlrpc": "2.15.0",
43         "lcobucci/jwt": "4.1.5",
44         "league/omnipay": "3.2.1",
45         "mobiledetect/mobiledetectlib": "3.74.0",
46         "monolog/monolog": "2.8.0",
47         "mpdf/mpdf": "8.1.3",
48         "nyholm/psr7": "1.5.1",
49         "nyholm/psr7-server": "1.0.2",
50         "omnipay/stripe": "3.2.0",
51         "openemr/mustache": "2.15.2",
52         "particle/validator": "2.3.5",
53         "pear/archive_tar": "1.4.14",
54         "phpmailer/phpmailer": "6.7.1",
55         "phpoffice/phpspreadsheet": "1.25.2",
56         "phpseclib/phpseclib": "2.0.39",
57         "php81_bc/strftime": "0.5.0",
58         "psr/log": "1.1.4",
59         "ramsey/uuid": "4.6.0",
60         "robthree/twofactorauth": "1.8.2",
61         "rospdf/pdf-php": "0.12.65",
62         "smarty/smarty": "4.3.0",
63         "steverhoades/oauth2-openid-connect-server": "2.4.0",
64         "stripe/stripe-php": "7.128.0",
65         "symfony/config": "5.4.11",
66         "symfony/console": "5.4.16",
67         "symfony/dependency-injection": "5.4.16",
68         "symfony/event-dispatcher": "5.4.9",
69         "symfony/http-client": "5.4.16",
70         "symfony/http-foundation": "5.4.16",
71         "symfony/yaml": "5.4.16",
72         "twig/twig": "3.4.3",
73         "vlucas/phpdotenv": "5.5.0",
74         "waryway/php-traits-library": "1.0.4",
75         "yubico/u2flib-server": "1.0.2"
76     },
77     "config": {
78         "platform": {
79             "php": "8.0"
80         },
81         "allow-plugins": {
82             "openemr/oe-module-installer-plugin": true
83         }
84     },
85     "require-dev": {
86         "phpunit/phpunit": "9.*",
87         "symfony/panther": "1.*",
88         "zircote/swagger-php": "^3.2"
89     },
90     "repositories": [
91         {
92             "type": "vcs",
93             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
94         },
95         {
96             "type": "git",
97             "url": "https://github.com/openemr/oe-module-cqm"
98         }
99     ],
100     "autoload": {
101         "exclude-from-classmap": [
102             "src/Common/Compatibility/Checker.php",
103             "library/classes/ClinicalTypes/",
104             "library/classes/rulesets/",
105             "library/classes/smtp/"
106         ],
107         "classmap": [
108             "library/classes"
109         ],
110         "files": [
111             "library/htmlspecialchars.inc.php",
112             "library/formdata.inc.php",
113             "library/sanitize.inc.php",
114             "library/formatting.inc.php",
115             "library/date_functions.php",
116             "library/validation/validate_core.php",
117             "library/translation.inc.php"
118         ],
119         "psr-4": {
120             "OpenEMR\\": "src"
121         }
122     },
123     "autoload-dev": {
124         "psr-4": {
125             "OpenEMR\\Tests\\": "tests\\Tests"
126         }
127     }