-
Notifications
You must be signed in to change notification settings - Fork 75
/
cpanfile.docker
325 lines (207 loc) · 8.45 KB
/
cpanfile.docker
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# Do not change this file manually except if you want to invalidate the cache just in the GitHub CI workflow.
# Instead adapt bin/otobo.CheckModules.pl and call
# ./bin/otobo.CheckModules.pl --docker-cpanfile > cpanfile.docker
# Required for compressed file generation (in perlcore).
requires 'Archive::Tar';
# Required for compressed file generation.
requires 'Archive::Zip';
# Support for readonly Perl variables
requires 'Const::Fast';
# Neater interface for capturing STDOUT and STDERR.
requires 'Capture::Tiny';
# JSON parsing and generation
requires 'JSON::XS';
requires 'Date::Format';
requires 'DateTime', '>= 1.08';
# A CSS minifier written in XS
requires 'CSS::Minifier::XS', '>= 0.09';
requires 'Convert::BinHex';
requires 'DBI';
# Sane persistent database connection
requires 'DBIx::Connector';
requires 'Digest::SHA';
requires 'File::chmod';
# HTTP style message
requires 'HTTP::Message', '>= 6.18';
# A JavaScript minifier written in XS
requires 'JavaScript::Minifier::XS';
requires 'List::Util', '>= 1.45';
requires 'List::AllUtils', '>= 0.11';
requires 'LWP::UserAgent';
# Required for random number generator.
requires 'Moo';
# clean up imported methodes
requires 'namespace::autoclean';
requires 'Net::DNS', '>= 1.05';
# Required by Kernel/cpan-lib/Mail/Mailer/smtps.pm
requires 'Net::SMTP::SSL';
# Neater path manipulation and some utils
requires 'Path::Class';
# Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)
requires 'Plack';
# needed by Kernel/cpan-lib/Crypt/Random/Source.pm
requires 'Sub::Exporter';
# Template::Toolkit, the rendering engine of OTOBO.
requires 'Template::Toolkit';
# The fast data stash for Template::Toolkit.
requires 'Template::Stash::XS';
requires 'Text::CSV', '>= 1.95';
# A fast backend that is used by Text::CSV
requires 'Text::CSV_XS', '>= 1.34';
requires 'Text::Trim';
# Required for high resolution timestamps.
requires 'Time::HiRes';
requires 'Try::Tiny';
# for generating properly escaped URLs
requires 'URI';
# Required for XML processing.
requires 'XML::LibXML';
# Required for fast and correct YAML processing.
requires 'YAML::XS', '>= 0.62';
# For internationalised sorting
requires 'Unicode::Collate';
# Set HTTP headers
requires 'Plack::Middleware::Header';
# Twist some HTTP variables so that the reverse proxy is transparent
requires 'Plack::Middleware::ReverseProxy';
# Feature 'apache:mod_perl' is not needed for Docker
# feature 'auth:openidconnect', 'Support for feature auth:openidconnect' => sub {
# Required for authentication via OpenIDConnect.
requires 'Crypt::JWT';
# };
# feature 'db:mysql', 'Support for database MySQL' => sub {
# Required to connect to a MariaDB or MySQL database.
# >= 4.00: just to have some minimum version, please use a more recent version
# != 4.042: This version had encoding related issues. Version 4.043 was a rollback to 4.0.41
# < 5.001: This version can't be installed with the MariaDB client library
requires 'DBD::mysql', '>= 4.00, != 4.042, < 5.001';
# };
# feature 'db:odbc', 'Support for database access via ODBC' => sub {
# Required to connect to a MS-SQL database.
# Version 1.23 not supported: This version is broken and not useable! Please upgrade to a higher version.
requires 'DBD::ODBC', '!= 1.23';
# };
# Feature 'db:oracle' is not needed for Docker
# feature 'db:postgresql', 'Support for database PostgreSQL' => sub {
# Required to connect to a PostgreSQL database.
requires 'DBD::Pg';
# };
# feature 'db:sqlite', 'Support for database SQLLite' => sub {
# Required to connect to a SQLite database.
requires 'DBD::SQLite';
# };
# feature 'devel:debugging', 'Features which can be useful in development environments' => sub {
# nicer formatting when dumping data structures
requires 'Data::Dump', '>= 1.25';
# convenient and informative dumping data structures
requires 'Data::Dx', '>= 0.000010';
# };
# feature 'devel:encoding', 'Modules for debugging encoding issues' => sub {
# for deeply inspecting scalars, especially strings
requires 'Data::Peek';
# for deeply inspecting strings
requires 'String::Dump';
# };
# feature 'devel:i18n', 'Modules for dealing with translation and internationalisation' => sub {
# module for manipulating .po entries
requires 'Locale::PO';
# };
# feature 'devel:test', 'Modules for running the test suite' => sub {
# for deeply inspecting scalars, especially strings
requires 'Data::Peek';
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver', '>= 1.49';
# a quick compile check
requires 'Test::Compile';
# basic test functions
requires 'Test2::Suite';
# contains Test2::API which is used in Kernel::System::UnitTest::Driver
requires 'Test::Simple';
# testing PSGI apps and URLs
requires 'Test2::Tools::HTTP';
# support for formatting test results
requires 'Unicode::GCString';
# };
# feature 'div:bcrypt', 'Support for feature div:bcrypt' => sub {
# For strong password hashing.
requires 'Crypt::Eksblowfish::Bcrypt';
# };
# feature 'div:cldr', 'Support for feature div:cldr' => sub {
# localisation from the CLDR project
requires 'Locale::CLDR', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Ar', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::De', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Es', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Fr', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Hu', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Ko', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Nb', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Pt', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Ru', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Sr', '== 0.44.1';
# language packs from the CLDR project
requires 'Locale::CLDR::Locales::Zh', '== 0.44.1';
# };
# Feature 'div:hanextra' is not needed for Docker
# feature 'div:ldap', 'Support for feature div:ldap' => sub {
# Required for directory authentication.
requires 'Net::LDAP';
# };
# feature 'div:qrcode', 'Support for feature div:qrcode' => sub {
# Support for QR code in PDF files
requires 'Text::QRCode';
# };
# Feature 'div:ssl' is not needed for Docker
# feature 'div:xslt', 'Support for feature div:xslt' => sub {
# Required for Generic Interface XSLT mapping module.
requires 'XML::LibXSLT';
# };
# feature 'gazelle', 'Required packages if you want to use Gazelle webserver' => sub {
# High-performance preforking PSGI/Plack web server
requires 'Gazelle';
# Used when plackup is run with the -R option. This option restarts the server when files have changed.
requires 'Linux::Inotify2';
# };
# feature 'graph:graphviz', 'Support for feature graph:graphviz' => sub {
# A wrapper for AT&T's Graphviz
requires 'GraphViz2', '>= 2.67';
# };
# Feature 'mail' is not needed for Docker
# feature 'mail:imap', 'Support for feature mail:imap' => sub {
# Required for IMAP TLS connections.
requires 'Mail::IMAPClient', '>= 3.22';
# };
# feature 'mail:ntlm', 'Support for feature mail:ntlm' => sub {
# Required for NTLM authentication mechanism in IMAP connections.
requires 'Authen::NTLM';
# };
# feature 'mail:sasl', 'Support for feature mail:sasl' => sub {
# Required for MD5 authentication mechanisms in IMAP connections.
requires 'Authen::SASL';
# };
# Feature 'mail:ssl' is not needed for Docker
# Feature 'optional' is not needed for Docker
# feature 'performance:redis', 'Support for feature performance:redis' => sub {
# For usage with Redis Cache Server.
requires 'Redis';
# Recommended for usage with Redis Cache Server. (it`s compatible with `Redis`, but **~2x faster**)
requires 'Redis::Fast';
# };
# feature 'storage:s3', 'AWS S3 compatible storage' => sub {
# support for the REST requests to the S3 storage
requires 'Mojolicious', '>= 9.22';
# correct and fast JSON support, used by Mojo::JSON
requires 'Cpanel::JSON::XS';
# support for S3 using Mojo::UserAgent
requires 'Mojolicious::Plugin::AWS';
# };