chore: bit of mysql cleanup in ci and dev environments (#7010)
[openemr.git] / composer.json
blob34fa763d65872084d0db2ac17ec8a6acbff9ee9a
2     "name": "openemr/openemr",
3     "version": "7.0.3",
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.1.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.22.6",
17         "aranyasen/hl7": "3.1.1",
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.15.1",
23         "guzzlehttp/guzzle": "7.8.0",
24         "html2text/html2text": "4.3.1",
25         "kamermans/guzzle-oauth2-subscriber": "1.0.13",
26         "knplabs/knp-snappy": "1.4.4",
27         "laminas/laminas-config": "3.9.0",
28         "laminas/laminas-db": "2.18.0",
29         "laminas/laminas-eventmanager": "3.12.0",
30         "laminas/laminas-escaper": "2.13.0",
31         "laminas/laminas-filter": "2.33.0",
32         "laminas/laminas-form": "3.13.1",
33         "laminas/laminas-inputfilter": "2.28.0",
34         "laminas/laminas-json": "3.6.0",
35         "laminas/laminas-json-server": "3.8.0",
36         "laminas/laminas-loader": "2.10.0",
37         "laminas/laminas-mvc": "3.6.1",
38         "laminas/laminas-mvc-i18n": "1.7.0",
39         "laminas/laminas-servicemanager": "3.22.1",
40         "laminas/laminas-soap": "2.13.0",
41         "laminas/laminas-stdlib": "3.18.0",
42         "laminas/laminas-xmlrpc": "2.17.0",
43         "lcobucci/jwt": "4.2.1",
44         "league/csv": "9.8.0",
45         "league/omnipay": "3.2.1",
46         "mobiledetect/mobiledetectlib": "3.74.3",
47         "monolog/monolog": "3.5.0",
48         "mpdf/mpdf": "8.2.0",
49         "nyholm/psr7": "1.8.0",
50         "nyholm/psr7-server": "1.0.2",
51         "omnipay/stripe": "3.2.0",
52         "openemr/mustache": "2.15.2",
53         "particle/validator": "2.3.5",
54         "pear/archive_tar": "1.4.14",
55         "phpmailer/phpmailer": "6.8.1",
56         "phpoffice/phpspreadsheet": "1.29.0",
57         "phpseclib/phpseclib": "3.0.33",
58         "php81_bc/strftime": "0.5.0",
59         "php-http/discovery": "1.19.1",
60         "psr/log": "2.0.0",
61         "ramsey/uuid": "4.7.4",
62         "robthree/twofactorauth": "2.0.0",
63         "rospdf/pdf-php": "0.12.67",
64         "smarty/smarty": "4.3.4",
65         "steverhoades/oauth2-openid-connect-server": "2.6.1",
66         "stripe/stripe-php": "13.2.0",
67         "symfony/config": "5.4.26",
68         "symfony/console": "5.4.28",
69         "symfony/dependency-injection": "5.4.29",
70         "symfony/event-dispatcher": "5.4.26",
71         "symfony/finder": "5.4.27",
72         "symfony/filesystem": "5.4.25",
73         "symfony/http-client": "5.4.29",
74         "symfony/http-foundation": "5.4.30",
75         "symfony/yaml": "5.4.30",
76         "twig/twig": "3.7.1",
77         "vlucas/phpdotenv": "5.5.0",
78         "waryway/php-traits-library": "1.0.4",
79         "yubico/u2flib-server": "1.0.2",
80         "twilio/sdk": "7.12.0"
81     },
82     "config": {
83         "platform": {
84             "php": "8.1"
85         },
86         "allow-plugins": {
87             "openemr/oe-module-installer-plugin": true
88         }
89     },
90     "require-dev": {
91         "phpunit/phpunit": "10.*",
92         "symfony/panther": "2.*",
93         "zircote/swagger-php": "3.*"
94     },
95     "repositories": [
96         {
97             "type": "vcs",
98             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
99         },
100         {
101             "type": "git",
102             "url": "https://github.com/openemr/oe-module-cqm"
103         }
104     ],
105     "autoload": {
106         "exclude-from-classmap": [
107             "src/Common/Compatibility/Checker.php",
108             "library/classes/ClinicalTypes/",
109             "library/classes/rulesets/",
110             "library/classes/smtp/"
111         ],
112         "classmap": [
113             "library/classes"
114         ],
115         "files": [
116             "library/htmlspecialchars.inc.php",
117             "library/formdata.inc.php",
118             "library/sanitize.inc.php",
119             "library/formatting.inc.php",
120             "library/date_functions.php",
121             "library/validation/validate_core.php",
122             "library/translation.inc.php"
123         ],
124         "psr-4": {
125             "OpenEMR\\": "src"
126         }
127     },
128     "autoload-dev": {
129         "psr-4": {
130             "OpenEMR\\Tests\\": "tests\\Tests"
131         }
132     }