forked from RotherOSS/otobo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpanfile
383 lines (255 loc) · 10.4 KB
/
cpanfile
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# Do not change this file manually.
# Instead adapt bin/otobo.CheckModules.pl and call
# ./bin/otobo.CheckModules.pl --cpanfile > cpanfile
# Required for compressed file generation (in perlcore).
requires 'Archive::Tar';
# Required for compressed file generation.
requires 'Archive::Zip';
requires 'Date::Format';
requires 'DateTime', ">= 1.08";
requires 'Convert::BinHex';
# Adapt CGI.pm to the PSGI protocol
requires 'CGI::PSGI';
requires 'DBI';
# Sane persistent database connection
requires 'DBIx::Connector';
requires 'Digest::SHA';
requires 'File::chmod';
requires 'List::AllUtils';
requires 'LWP::UserAgent';
# Required for random number generator.
requires 'Moo';
# clean up imported methodes
requires 'namespace::autoclean';
# Version 0.60 not supported: This version is broken and not useable! Please upgrade to a higher version.
requires 'Net::DNS', "!= 0.60";
# Required by Kernel/cpan-lib/Mail/Mailer/smtps.pm
requires 'Net::SMTP::SSL';
# Neater path manipulation and some utils
requires 'Path::Class';
# 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';
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 YAML processing.
requires 'YAML::XS';
# For internationalised sorting
requires 'Unicode::Collate';
# Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)
requires 'Plack';
# Set HTTP headers
requires 'Plack::Middleware::Header';
# Twist some HTTP variables so that the reverse proxy is transparent
requires 'Plack::Middleware::ReverseProxy';
# Support for readonly Perl variables
requires 'Const::Fast';
feature 'apache:mod_perl', 'Support for feature apache:mod_perl' => sub {
# Improves Performance on Apache webservers dramatically.
requires 'ModPerl::Util';
};
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.
# Version 5.001 not supported: This version can't be installed with the MariaDB client library.
requires 'DBD::mysql', "!= 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', 'Support for database Oracle' => sub {
# Required to connect to a Oracle database.
requires 'DBD::Oracle';
};
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: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:test', 'Modules for running the test suite' => sub {
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver', ">= 1.40";
# a quick compile check
requires 'Test::Compile';
# basic test functions
requires 'Test2::Suite';
# an alternative test runner
requires 'Test2::Harness';
# contains Test2::API which is used in Kernel::System::UnitTest::Driver
requires 'Test::Simple';
# testing PSGI apps and URLs
requires 'Test2::Tools::HTTP';
};
feature 'div:bcrypt', 'Support for feature div:bcrypt' => sub {
# For strong password hashing.
requires 'Crypt::Eksblowfish::Bcrypt';
};
feature 'div:hanextra', 'Support for feature div:hanextra' => sub {
# Required to handle mails with several Chinese character sets.
requires 'Encode::HanExtra', ">= 0.23";
};
feature 'div:ldap', 'Support for feature div:ldap' => sub {
# Required for directory authentication.
requires 'Net::LDAP';
};
feature 'div:ssl', 'Support for feature div:ssl' => sub {
# Required for SSL connections to web and mail servers.
# Please consider updating to version 2.066 or higher: This version fixes email sending (bug#14357).
requires 'IO::Socket::SSL';
};
feature 'div:xmlparser', 'Support for feature div:xmlparser' => sub {
# Recommended for XML processing.
requires 'XML::Parser';
};
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 'mail', 'Features enabling communication with a mail-server' => sub {
# Simple Mail Transfer Protocol Client.
# Please consider updating to version 3.11 or higher: This version fixes email sending (bug#14357).
requires 'Net::SMTP';
};
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', 'Support for feature mail:ssl' => sub {
# Required for SSL connections to web and mail servers.
# Please consider updating to version 2.066 or higher: This version fixes email sending (bug#14357).
requires 'IO::Socket::SSL';
};
feature 'optional', 'Support for feature optional' => 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';
# Required to connect to a MariaDB or MySQL database.
# Version 5.001 not supported: This version can't be installed with the MariaDB client library.
requires 'DBD::mysql', "!= 5.001";
# 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";
# Required to connect to a Oracle database.
requires 'DBD::Oracle';
# Required to connect to a PostgreSQL database.
requires 'DBD::Pg';
# Required to connect to a SQLite database.
requires 'DBD::SQLite';
# Improves Performance on Apache webservers dramatically.
requires 'ModPerl::Util';
# Simple Mail Transfer Protocol Client.
# Please consider updating to version 3.11 or higher: This version fixes email sending (bug#14357).
requires 'Net::SMTP';
# Required for IMAP TLS connections.
requires 'Mail::IMAPClient', ">= 3.22";
# Required for MD5 authentication mechanisms in IMAP connections.
requires 'Authen::SASL';
# Required for NTLM authentication mechanism in IMAP connections.
requires 'Authen::NTLM';
# Recommended for faster AJAX/JavaScript handling.
requires 'JSON::XS';
# Recommended for faster CSV handling.
requires 'Text::CSV_XS';
# 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';
# 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';
# Required for authentication via OpenIDConnect.
requires 'Crypt::JWT';
# Required to handle mails with several Chinese character sets.
requires 'Encode::HanExtra', ">= 0.23";
# Required for SSL connections to web and mail servers.
# Please consider updating to version 2.066 or higher: This version fixes email sending (bug#14357).
requires 'IO::Socket::SSL';
# Required for directory authentication.
requires 'Net::LDAP';
# For strong password hashing.
requires 'Crypt::Eksblowfish::Bcrypt';
# Required for Generic Interface XSLT mapping module.
requires 'XML::LibXSLT';
# Recommended for XML processing.
requires 'XML::Parser';
# for deeply inspecting scalars, especially strings
requires 'Data::Peek';
# for deeply inspecting strings
requires 'String::Dump';
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver', ">= 1.40";
# a quick compile check
requires 'Test::Compile';
# basic test functions
requires 'Test2::Suite';
# an alternative test runner
requires 'Test2::Harness';
# contains Test2::API which is used in Kernel::System::UnitTest::Driver
requires 'Test::Simple';
# testing PSGI apps and URLs
requires 'Test2::Tools::HTTP';
};
feature 'performance:csv', 'Support for feature performance:csv' => sub {
# Recommended for faster CSV handling.
requires 'Text::CSV_XS';
};
feature 'performance:json', 'Support for feature performance:json' => sub {
# Recommended for faster AJAX/JavaScript handling.
requires 'JSON::XS';
};
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';
};