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