-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
127 lines (127 loc) · 4.32 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "openemr/openemr",
"version": "7.0.0",
"description": "OpenEMR is a Free and Open Source electronic health records and medical practice management application",
"license": "GPL",
"support": {
"website": "https://www.open-emr.org/",
"issues": "https://github.com/openemr/openemr/issues",
"forum": "https://community.open-emr.org/",
"wiki": "https://www.open-emr.org/wiki/index.php/OpenEMR_Wiki_Home_Page",
"source": "https://github.com/openemr/openemr"
},
"require": {
"php": ">=7.4.0",
"academe/omnipay-authorizenetapi": "3.1.2",
"adodb/adodb-php": "5.21.4",
"aranyasen/hl7": "2.1.6",
"digitickets/lalit": "3.3.0",
"dompdf/dompdf": "1.2.2",
"ezyang/htmlpurifier": "4.14.0",
"google/apiclient": "2.12.6",
"guzzlehttp/guzzle": "7.4.4",
"html2text/html2text": "4.3.1",
"kamermans/guzzle-oauth2-subscriber": "1.0.11",
"knplabs/knp-snappy": "1.4.1",
"laminas/laminas-config": "3.7.0",
"laminas/laminas-db": "2.15.0",
"laminas/laminas-eventmanager": "3.5.0",
"laminas/laminas-escaper": "2.10.0",
"laminas/laminas-filter": "2.14.0",
"laminas/laminas-form": "3.2.0",
"laminas/laminas-inputfilter": "2.18.0",
"laminas/laminas-json": "3.3.0",
"laminas/laminas-json-server": "3.5.0",
"laminas/laminas-loader": "2.8.0",
"laminas/laminas-mvc": "3.3.3",
"laminas/laminas-mvc-console": "1.3.0",
"laminas/laminas-mvc-i18n": "1.3.1",
"laminas/laminas-servicemanager": "3.12.0",
"laminas/laminas-soap": "2.10.0",
"laminas/laminas-stdlib": "3.10.1",
"laminas/laminas-xmlrpc": "2.13.0",
"lcobucci/jwt": "4.1.5",
"league/omnipay": "3.2.1",
"mobiledetect/mobiledetectlib": "2.8.39",
"monolog/monolog": "2.7.0",
"mpdf/mpdf": "8.1.1",
"nyholm/psr7": "1.5.0",
"nyholm/psr7-server": "1.0.2",
"omnipay/stripe": "3.2.0",
"openemr/mustache": "2.15.2",
"paragonie/multi-factor": "0.2.2",
"particle/validator": "2.3.4",
"pear/archive_tar": "1.4.14",
"phpmailer/phpmailer": "6.6.2",
"phpoffice/phpspreadsheet": "1.23.0",
"phpseclib/phpseclib": "2.0.37",
"psr/log": "1.1.4",
"ramsey/uuid": "4.2.3",
"rospdf/pdf-php": "0.12.63",
"smarty/smarty": "2.6.33",
"steverhoades/oauth2-openid-connect-server": "2.4.0",
"stripe/stripe-php": "7.128.0",
"symfony/config": "4.4.42",
"symfony/dependency-injection": "4.4.42",
"symfony/event-dispatcher": "4.4.42",
"symfony/event-dispatcher-contracts": "1.1.12",
"symfony/http-client": "4.4.42",
"symfony/http-foundation": "4.4.42",
"symfony/yaml": "4.4.37",
"twig/twig": "3.4.1",
"vlucas/phpdotenv": "5.4.1",
"waryway/php-traits-library": "1.0.4",
"yubico/u2flib-server": "1.0.2"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"openemr/oe-module-installer-plugin": true
}
},
"require-dev": {
"phpunit/phpunit": "9.*",
"symfony/panther": "1.*",
"zircote/swagger-php": "^3.2"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/openemr/wkhtmltopdf-openemr"
},
{
"type": "git",
"url": "https://github.com/openemr/oe-module-cqm"
}
],
"autoload": {
"exclude-from-classmap": [
"src/Common/Compatibility/Checker.php",
"library/classes/ClinicalTypes/",
"library/classes/rulesets/",
"library/classes/smtp/"
],
"classmap": [
"library/classes"
],
"files": [
"library/htmlspecialchars.inc.php",
"library/formdata.inc.php",
"library/sanitize.inc.php",
"library/formatting.inc.php",
"library/date_functions.php",
"library/validation/validate_core.php",
"library/translation.inc.php"
],
"psr-4": {
"OpenEMR\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OpenEMR\\Tests\\": "tests\\Tests"
}
}
}