updates to make oauth2/api compatible with php8 (#4069)
[openemr.git] / composer.json
blob394a547672573049b8a1d6e6d82e6207d5369f92
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.3.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.20.18",
17         "dompdf/dompdf": "0.8.6",
18         "ezyang/htmlpurifier": "4.13.0",
19         "guzzlehttp/guzzle": "7.2.0",
20         "kamermans/guzzle-oauth2-subscriber": "1.0.7",
21         "knplabs/knp-snappy": "1.2.1",
22         "laminas/laminas-config": "3.4.0",
23         "laminas/laminas-db": "2.11.3",
24         "laminas/laminas-eventmanager": "3.3.0",
25         "laminas/laminas-escaper": "2.6.1",
26         "laminas/laminas-filter": "2.9.4",
27         "laminas/laminas-form": "2.15.0",
28         "laminas/laminas-inputfilter": "2.10.1",
29         "laminas/laminas-json": "3.1.2",
30         "laminas/laminas-json-server": "3.2.2",
31         "laminas/laminas-loader": "2.6.1",
32         "laminas/laminas-mvc": "3.1.1",
33         "laminas/laminas-mvc-console": "1.2.0",
34         "laminas/laminas-mvc-i18n": "1.1.1",
35         "laminas/laminas-servicemanager": "3.4.1",
36         "laminas/laminas-soap": "2.8.0",
37         "laminas/laminas-stdlib": "3.3.0",
38         "laminas/laminas-xmlrpc": "2.9.0",
39         "league/omnipay": "3.1.0",
40         "mobiledetect/mobiledetectlib": "2.8.34",
41         "mpdf/mpdf": "8.0.7",
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.10",
46         "phpmailer/phpmailer": "6.1.8",
47         "phpoffice/phpspreadsheet": "1.15.0",
48         "phpseclib/phpseclib": "2.0.29",
49         "ramsey/uuid": "4.1.1",
50         "rospdf/pdf-php": "0.12.63",
51         "smarty/smarty": "2.6.31",
52         "symfony/config": "4.4.15",
53         "symfony/dependency-injection": "4.4.15",
54         "symfony/event-dispatcher": "4.4.15",
55         "symfony/http-foundation": "4.4.15",
56         "symfony/yaml": "4.4.15",
57         "twig/twig": "2.14.0",
58         "vlucas/phpdotenv": "5.2.0",
59         "waryway/php-traits-library": "1.0.4",
60         "yubico/u2flib-server": "1.0.2",
61         "steverhoades/oauth2-openid-connect-server": "1.2",
62         "nyholm/psr7": "1.3",
63         "nyholm/psr7-server": "1.0",
64         "lcobucci/jwt": "dev-34php8 as 3.4.9"
65     },
66     "config": {
67         "platform": {
68             "php": "7.3"
69         }
70     },
71     "require-dev": {
72         "phpunit/phpunit": "9.*",
73         "symfony/panther": "^0.8"
74     },
75     "repositories": [
76         {
77             "type": "vcs",
78             "url": "https://github.com/openemr/jwt"
79         },
80         {
81             "type": "vcs",
82             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
83         }
84     ],
85     "autoload": {
86         "exclude-from-classmap": [
87             "src/Common/Compatibility/Checker.php",
88             "library/classes/ClinicalTypes/",
89             "library/classes/rulesets/",
90             "library/classes/smtp/"
91         ],
92         "classmap": [
93             "library/classes"
94         ],
95         "files": [
96             "library/htmlspecialchars.inc.php",
97             "library/formdata.inc.php",
98             "library/sanitize.inc.php",
99             "library/formatting.inc.php",
100             "library/date_functions.php",
101             "library/validation/validate_core.php",
102             "library/translation.inc.php"
103         ],
104         "psr-4": {
105             "OpenEMR\\": "src"
106         }
107     },
108     "autoload-dev": {
109         "psr-4": {
110             "OpenEMR\\Tests\\": "tests\\Tests"
111         }
112     }