Layout editor fixes to preserve sensitive column names. (#4408)
[openemr.git] / composer.json
blob80e4e74189f4ee87345f1a74078beb8010b7c706
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.21.0",
17         "dompdf/dompdf": "1.0.2",
18         "ezyang/htmlpurifier": "4.13.0",
19         "guzzlehttp/guzzle": "7.3.0",
20         "kamermans/guzzle-oauth2-subscriber": "1.0.8",
21         "knplabs/knp-snappy": "1.2.1",
22         "laminas/laminas-config": "3.5.0",
23         "laminas/laminas-db": "2.12.0",
24         "laminas/laminas-eventmanager": "3.3.1",
25         "laminas/laminas-escaper": "2.7.0",
26         "laminas/laminas-filter": "2.11.0",
27         "laminas/laminas-form": "2.16.3",
28         "laminas/laminas-inputfilter": "2.12.0",
29         "laminas/laminas-json": "3.2.0",
30         "laminas/laminas-json-server": "3.3.0",
31         "laminas/laminas-loader": "2.7.0",
32         "laminas/laminas-mvc": "3.2.0",
33         "laminas/laminas-mvc-console": "1.3.0",
34         "laminas/laminas-mvc-i18n": "1.2.0",
35         "laminas/laminas-servicemanager": "3.6.4",
36         "laminas/laminas-soap": "2.9.0",
37         "laminas/laminas-stdlib": "3.3.1",
38         "laminas/laminas-xmlrpc": "2.10.0",
39         "league/omnipay": "3.1.0",
40         "mobiledetect/mobiledetectlib": "2.8.37",
41         "mpdf/mpdf": "8.0.10",
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.13",
46         "phpmailer/phpmailer": "6.4.1",
47         "phpoffice/phpspreadsheet": "1.17.1",
48         "phpseclib/phpseclib": "2.0.31",
49         "ramsey/uuid": "4.1.1",
50         "rospdf/pdf-php": "0.12.63",
51         "smarty/smarty": "2.6.31",
52         "symfony/config": "4.4.20",
53         "symfony/dependency-injection": "4.4.20",
54         "symfony/event-dispatcher": "4.4.20",
55         "symfony/http-foundation": "4.4.20",
56         "symfony/yaml": "4.4.20",
57         "twig/twig": "3.3.0",
58         "vlucas/phpdotenv": "5.3.0",
59         "waryway/php-traits-library": "1.0.4",
60         "yubico/u2flib-server": "1.0.2",
61         "steverhoades/oauth2-openid-connect-server": "2.0.0",
62         "nyholm/psr7": "1.4.0",
63         "nyholm/psr7-server": "1.0.1",
64         "lcobucci/jwt": "dev-345php8 as 3.4.9",
65         "psr/log": "1.1.3",
66         "monolog/monolog": "2.2.0",
67         "google/apiclient": "2.9.1",
68         "stripe/stripe-php": "7.77.0"
69     },
70     "config": {
71         "platform": {
72             "php": "7.3"
73         }
74     },
75     "require-dev": {
76         "phpunit/phpunit": "9.*",
77         "symfony/panther": "1.*"
78     },
79     "repositories": [
80         {
81             "type": "vcs",
82             "url": "https://github.com/openemr/jwt"
83         },
84         {
85             "type": "vcs",
86             "url": "https://github.com/openemr/wkhtmltopdf-openemr"
87         }
88     ],
89     "autoload": {
90         "exclude-from-classmap": [
91             "src/Common/Compatibility/Checker.php",
92             "library/classes/ClinicalTypes/",
93             "library/classes/rulesets/",
94             "library/classes/smtp/"
95         ],
96         "classmap": [
97             "library/classes"
98         ],
99         "files": [
100             "library/htmlspecialchars.inc.php",
101             "library/formdata.inc.php",
102             "library/sanitize.inc.php",
103             "library/formatting.inc.php",
104             "library/date_functions.php",
105             "library/validation/validate_core.php",
106             "library/translation.inc.php"
107         ],
108         "psr-4": {
109             "OpenEMR\\": "src"
110         }
111     },
112     "autoload-dev": {
113         "psr-4": {
114             "OpenEMR\\Tests\\": "tests\\Tests"
115         }
116     }