fix: Update patient_tracker.php (#6595)
[openemr.git] / composer.json
blob1250ab0f74cb8ffa80064a142f28d9452e8c6f2f
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.5",
17         "aranyasen/hl7": "3.0.0",
18         "bacon/bacon-qr-code": "2.0.7",
19         "digitickets/lalit": "3.3.0",
20         "dompdf/dompdf": "2.0.3",
21         "ezyang/htmlpurifier": "4.16.0",
22         "google/apiclient": "2.13.0",
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.2",
27         "laminas/laminas-config": "3.8.0",
28         "laminas/laminas-db": "2.17.0",
29         "laminas/laminas-eventmanager": "3.10.0",
30         "laminas/laminas-escaper": "2.12.0",
31         "laminas/laminas-filter": "2.31.0",
32         "laminas/laminas-form": "3.8.0",
33         "laminas/laminas-inputfilter": "2.24.0",
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.12.0",
41         "laminas/laminas-stdlib": "3.16.1",
42         "laminas/laminas-xmlrpc": "2.15.0",
43         "lcobucci/jwt": "4.2.1",
44         "league/omnipay": "3.2.1",
45         "mobiledetect/mobiledetectlib": "3.74.0",
46         "monolog/monolog": "2.9.1",
47         "mpdf/mpdf": "8.1.4",
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.8.0",
55         "phpoffice/phpspreadsheet": "1.28.0",
56         "phpseclib/phpseclib": "2.0.42",
57         "php81_bc/strftime": "0.5.0",
58         "php-http/discovery": "1.14.3",
59         "psr/log": "1.1.4",
60         "ramsey/uuid": "4.7.3",
61         "robthree/twofactorauth": "1.8.2",
62         "rospdf/pdf-php": "0.12.65",
63         "smarty/smarty": "4.3.1",
64         "steverhoades/oauth2-openid-connect-server": "2.5.0",
65         "stripe/stripe-php": "7.128.0",
66         "symfony/config": "5.4.21",
67         "symfony/console": "5.4.21",
68         "symfony/dependency-injection": "5.4.21",
69         "symfony/event-dispatcher": "5.4.21",
70         "symfony/finder": "5.4.21",
71         "symfony/filesystem": "5.4.21",
72         "symfony/http-client": "5.4.21",
73         "symfony/http-foundation": "5.4.21",
74         "symfony/yaml": "5.4.21",
75         "twig/twig": "3.5.1",
76         "vlucas/phpdotenv": "5.5.0",
77         "waryway/php-traits-library": "1.0.4",
78         "yubico/u2flib-server": "1.0.2",
79         "twilio/sdk": "6.44.3"
80     },
81     "config": {
82         "platform": {
83             "php": "8.0"
84         },
85         "allow-plugins": {
86             "openemr/oe-module-installer-plugin": true
87         }
88     },
89     "require-dev": {
90         "phpunit/phpunit": "9.*",
91         "symfony/panther": "1.*",
92         "zircote/swagger-php": "^3.2"
93     },
94     "repositories": [
95         {
96             "type": "vcs",
97             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
98         },
99         {
100             "type": "git",
101             "url": "https://github.com/openemr/oe-module-cqm"
102         }
103     ],
104     "autoload": {
105         "exclude-from-classmap": [
106             "src/Common/Compatibility/Checker.php",
107             "library/classes/ClinicalTypes/",
108             "library/classes/rulesets/",
109             "library/classes/smtp/"
110         ],
111         "classmap": [
112             "library/classes"
113         ],
114         "files": [
115             "library/htmlspecialchars.inc.php",
116             "library/formdata.inc.php",
117             "library/sanitize.inc.php",
118             "library/formatting.inc.php",
119             "library/date_functions.php",
120             "library/validation/validate_core.php",
121             "library/translation.inc.php"
122         ],
123         "psr-4": {
124             "OpenEMR\\": "src"
125         }
126     },
127     "autoload-dev": {
128         "psr-4": {
129             "OpenEMR\\Tests\\": "tests\\Tests"
130         }
131     }