increment v_database for prior commit
[openemr.git] / composer.json
bloba66fcb4c28c03f6c43293aec8b942fa10488c4b4
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": ">=7.4.0",
15         "academe/omnipay-authorizenetapi": "3.1.2",
16         "adodb/adodb-php": "5.21.4",
17         "aranyasen/hl7": "2.1.6",
18         "bacon/bacon-qr-code": "2.0.7",
19         "digitickets/lalit": "3.3.0",
20         "dompdf/dompdf": "1.2.2",
21         "ezyang/htmlpurifier": "4.14.0",
22         "google/apiclient": "2.12.6",
23         "guzzlehttp/guzzle": "7.4.4",
24         "html2text/html2text": "4.3.1",
25         "kamermans/guzzle-oauth2-subscriber": "1.0.11",
26         "knplabs/knp-snappy": "1.4.1",
27         "laminas/laminas-config": "3.7.0",
28         "laminas/laminas-db": "2.15.0",
29         "laminas/laminas-eventmanager": "3.5.0",
30         "laminas/laminas-escaper": "2.10.0",
31         "laminas/laminas-filter": "2.14.0",
32         "laminas/laminas-form": "3.2.0",
33         "laminas/laminas-inputfilter": "2.18.0",
34         "laminas/laminas-json": "3.3.0",
35         "laminas/laminas-json-server": "3.5.0",
36         "laminas/laminas-loader": "2.8.0",
37         "laminas/laminas-mvc": "3.3.3",
38         "laminas/laminas-mvc-console": "1.3.0",
39         "laminas/laminas-mvc-i18n": "1.3.1",
40         "laminas/laminas-servicemanager": "3.12.0",
41         "laminas/laminas-soap": "2.10.0",
42         "laminas/laminas-stdlib": "3.10.1",
43         "laminas/laminas-xmlrpc": "2.13.0",
44         "lcobucci/jwt": "4.1.5",
45         "league/omnipay": "3.2.1",
46         "mobiledetect/mobiledetectlib": "2.8.39",
47         "monolog/monolog": "2.7.0",
48         "mpdf/mpdf": "8.1.1",
49         "nyholm/psr7": "1.5.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.4",
54         "pear/archive_tar": "1.4.14",
55         "phpmailer/phpmailer": "6.6.2",
56         "phpoffice/phpspreadsheet": "1.23.0",
57         "phpseclib/phpseclib": "2.0.37",
58         "php81_bc/strftime": "0.5.0",
59         "psr/log": "1.1.4",
60         "ramsey/uuid": "4.2.3",
61         "robthree/twofactorauth": "1.8.2",
62         "rospdf/pdf-php": "0.12.63",
63         "smarty/smarty": "4.2.0",
64         "steverhoades/oauth2-openid-connect-server": "2.4.0",
65         "stripe/stripe-php": "7.128.0",
66         "symfony/config": "4.4.42",
67         "symfony/dependency-injection": "4.4.42",
68         "symfony/event-dispatcher": "4.4.42",
69         "symfony/event-dispatcher-contracts": "1.1.12",
70         "symfony/http-client": "4.4.42",
71         "symfony/http-foundation": "4.4.42",
72         "symfony/yaml": "4.4.37",
73         "twig/twig": "3.4.1",
74         "vlucas/phpdotenv": "5.4.1",
75         "waryway/php-traits-library": "1.0.4",
76         "yubico/u2flib-server": "1.0.2"
77     },
78     "config": {
79         "platform": {
80             "php": "7.4"
81         },
82         "allow-plugins": {
83             "openemr/oe-module-installer-plugin": true
84         }
85     },
86     "require-dev": {
87         "phpunit/phpunit": "9.*",
88         "symfony/panther": "1.*",
89         "zircote/swagger-php": "^3.2"
90     },
91     "repositories": [
92         {
93             "type": "vcs",
94             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
95         },
96         {
97             "type": "git",
98             "url": "https://github.com/openemr/oe-module-cqm"
99         }
100     ],
101     "autoload": {
102         "exclude-from-classmap": [
103             "src/Common/Compatibility/Checker.php",
104             "library/classes/ClinicalTypes/",
105             "library/classes/rulesets/",
106             "library/classes/smtp/"
107         ],
108         "classmap": [
109             "library/classes"
110         ],
111         "files": [
112             "library/htmlspecialchars.inc.php",
113             "library/formdata.inc.php",
114             "library/sanitize.inc.php",
115             "library/formatting.inc.php",
116             "library/date_functions.php",
117             "library/validation/validate_core.php",
118             "library/translation.inc.php"
119         ],
120         "psr-4": {
121             "OpenEMR\\": "src"
122         }
123     },
124     "autoload-dev": {
125         "psr-4": {
126             "OpenEMR\\Tests\\": "tests\\Tests"
127         }
128     }