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