Followup commit to complete the renaming and replacement of pos_checkout.php.
[openemr.git] / composer.json
blob80078c28c877fcd0f6f359157f9728c98955607f
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.7.0",
26         "laminas/laminas-filter": "2.9.4",
27         "laminas/laminas-form": "2.15.0",
28         "laminas/laminas-inputfilter": "2.11.0",
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.5.1",
36         "laminas/laminas-soap": "2.8.0",
37         "laminas/laminas-stdlib": "3.3.1",
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.11",
46         "phpmailer/phpmailer": "6.2.0",
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.17",
53         "symfony/dependency-injection": "4.4.17",
54         "symfony/event-dispatcher": "4.4.17",
55         "symfony/http-foundation": "4.4.17",
56         "symfony/yaml": "4.4.17",
57         "twig/twig": "2.14.1",
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.3",
62         "nyholm/psr7": "1.3.2",
63         "nyholm/psr7-server": "1.0.1",
64         "lcobucci/jwt": "dev-342php8 as 3.4.9",
65         "psr/log": "1.1.3",
66         "monolog/monolog": "2.1.1",
67         "google/apiclient": "2.9.1"
68     },
69     "config": {
70         "platform": {
71             "php": "7.3"
72         }
73     },
74     "require-dev": {
75         "phpunit/phpunit": "9.*",
76         "symfony/panther": "^0.9"
77     },
78     "repositories": [
79         {
80             "type": "vcs",
81             "url": "https://github.com/openemr/jwt"
82         },
83         {
84             "type": "vcs",
85             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
86         }
87     ],
88     "autoload": {
89         "exclude-from-classmap": [
90             "src/Common/Compatibility/Checker.php",
91             "library/classes/ClinicalTypes/",
92             "library/classes/rulesets/",
93             "library/classes/smtp/"
94         ],
95         "classmap": [
96             "library/classes"
97         ],
98         "files": [
99             "library/htmlspecialchars.inc.php",
100             "library/formdata.inc.php",
101             "library/sanitize.inc.php",
102             "library/formatting.inc.php",
103             "library/date_functions.php",
104             "library/validation/validate_core.php",
105             "library/translation.inc.php"
106         ],
107         "psr-4": {
108             "OpenEMR\\": "src"
109         }
110     },
111     "autoload-dev": {
112         "psr-4": {
113             "OpenEMR\\Tests\\": "tests\\Tests"
114         }
115     }