forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
116 lines (116 loc) · 3.92 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
{
"name": "openemr/openemr",
"version": "6.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.3.0",
"academe/omnipay-authorizenetapi": "3.1.2",
"adodb/adodb-php": "5.21.0",
"dompdf/dompdf": "1.0.2",
"ezyang/htmlpurifier": "4.13.0",
"guzzlehttp/guzzle": "7.3.0",
"kamermans/guzzle-oauth2-subscriber": "1.0.8",
"knplabs/knp-snappy": "1.2.1",
"laminas/laminas-config": "3.5.0",
"laminas/laminas-db": "2.12.0",
"laminas/laminas-eventmanager": "3.3.1",
"laminas/laminas-escaper": "2.7.0",
"laminas/laminas-filter": "2.11.0",
"laminas/laminas-form": "2.16.3",
"laminas/laminas-inputfilter": "2.12.0",
"laminas/laminas-json": "3.2.0",
"laminas/laminas-json-server": "3.3.0",
"laminas/laminas-loader": "2.7.0",
"laminas/laminas-mvc": "3.2.0",
"laminas/laminas-mvc-console": "1.3.0",
"laminas/laminas-mvc-i18n": "1.2.0",
"laminas/laminas-servicemanager": "3.6.4",
"laminas/laminas-soap": "2.9.0",
"laminas/laminas-stdlib": "3.3.1",
"laminas/laminas-xmlrpc": "2.10.0",
"league/omnipay": "3.1.0",
"mobiledetect/mobiledetectlib": "2.8.37",
"mpdf/mpdf": "8.0.10",
"omnipay/stripe": "3.1.0",
"paragonie/multi-factor": "0.2.2",
"particle/validator": "2.3.4",
"pear/archive_tar": "1.4.13",
"phpmailer/phpmailer": "6.4.0",
"phpoffice/phpspreadsheet": "1.17.1",
"phpseclib/phpseclib": "2.0.31",
"ramsey/uuid": "4.1.1",
"rospdf/pdf-php": "0.12.63",
"smarty/smarty": "2.6.31",
"symfony/config": "4.4.20",
"symfony/dependency-injection": "4.4.20",
"symfony/event-dispatcher": "4.4.20",
"symfony/http-foundation": "4.4.20",
"symfony/yaml": "4.4.20",
"twig/twig": "3.3.0",
"vlucas/phpdotenv": "5.3.0",
"waryway/php-traits-library": "1.0.4",
"yubico/u2flib-server": "1.0.2",
"steverhoades/oauth2-openid-connect-server": "2.0.0",
"nyholm/psr7": "1.4.0",
"nyholm/psr7-server": "1.0.1",
"lcobucci/jwt": "dev-345php8 as 3.4.9",
"psr/log": "1.1.3",
"monolog/monolog": "2.2.0",
"google/apiclient": "2.9.1"
},
"config": {
"platform": {
"php": "7.3"
}
},
"require-dev": {
"phpunit/phpunit": "9.*",
"symfony/panther": "1.*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/openemr/jwt"
},
{
"type": "vcs",
"url": "https://github.com/openemr/wkhtmltopdf-openemr"
}
],
"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"
}
}
}