forked from RotherOSS/otobo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpanfile
406 lines (271 loc) · 10.9 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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# 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';
# for use in Autoload modules.
requires 'Class::Method::Modifiers';
requires 'Date::Format';
requires 'DateTime', ">= 1.08";
requires 'Convert::BinHex';
requires 'DBI';
requires 'Digest::SHA';
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';
# 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';
# 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';
feature 'apache:mod_perl', 'Suppport for apache:mod_perl' => sub {
# Improves Performance on Apache webservers dramatically.
requires 'ModPerl::Util';
# Improves Performance on Apache webservers with mod_perl enabled.
requires 'Apache::DBI';
# Avoids web server restarts on mod_perl.
requires 'Apache2::Reload';
};
feature 'db:mysql', 'Support for database MySQL' => sub {
# Required to connect to a MySQL database.
requires 'DBD::mysql';
};
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', 'Suppport for devel:encoding' => sub {
# for deeply inspecting strings
requires 'String::Dump';
};
feature 'devel:test', 'Suppport for devel:test' => 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';
# 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', 'Suppport for div:bcrypt' => sub {
# For strong password hashing.
requires 'Crypt::Eksblowfish::Bcrypt';
};
feature 'div:hanextra', 'Suppport for div:hanextra' => sub {
# Required to handle mails with several Chinese character sets.
requires 'Encode::HanExtra', ">= 0.23";
};
feature 'div:ldap', 'Suppport for div:ldap' => sub {
# Required for directory authentication.
requires 'Net::LDAP';
};
feature 'div:readonly', 'Suppport for div:readonly' => sub {
# Support for readonly Perl variables
requires 'Const::Fast';
};
feature 'div:ssl', 'Suppport for 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', 'Suppport for div:xmlparser' => sub {
# Recommended for XML processing.
requires 'XML::Parser';
};
feature 'div:xslt', 'Suppport for div:xslt' => sub {
# Required for Generic Interface XSLT mapping module.
requires 'XML::LibXSLT';
};
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', 'Suppport for mail:imap' => sub {
# Required for IMAP TLS connections.
requires 'Mail::IMAPClient', ">= 3.22";
};
feature 'mail:ntlm', 'Suppport for mail:ntlm' => sub {
# Required for NTLM authentication mechanism in IMAP connections.
requires 'Authen::NTLM';
};
feature 'mail:sasl', 'Suppport for mail:sasl' => sub {
# Required for MD5 authentication mechanisms in IMAP connections.
requires 'Authen::SASL';
};
feature 'mail:ssl', 'Suppport for 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', 'Suppport for optional' => sub {
# Required to connect to a MySQL database.
requires 'DBD::mysql';
# 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';
# Improves Performance on Apache webservers with mod_perl enabled.
requires 'Apache::DBI';
# Avoids web server restarts on mod_perl.
requires 'Apache2::Reload';
# 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';
# Support old fashioned CGI in a PSGI application
requires 'CGI::Emulate::PSGI';
# Adapt CGI.pm to the PSGI protocol
requires 'CGI::PSGI';
# Sane persistent database connection
requires 'DBIx::Connector';
# 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';
# Neater path manipulation and some utils
requires 'Path::Class';
# Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)
requires 'Plack';
# Serve static files
requires 'Plack::App::File';
# Set environment variables
requires 'Plack::Middleware::ForceEnv';
# Set HTTP headers
requires 'Plack::Middleware::Header';
# Watch for changed modules in %INC. Depends on Module::Refresh
requires 'Plack::Middleware::Refresh';
# Twist some HTTP variables so that the reverse proxy is transparent
requires 'Plack::Middleware::ReverseProxy';
# Set environment variables
requires 'Plack::Middleware::Rewrite';
# PSGI SOAP adapter
requires 'SOAP::Transport::HTTP::Plack';
# 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';
# Support for readonly Perl variables
requires 'Const::Fast';
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver', ">= 1.40";
# for deeply inspecting strings
requires 'String::Dump';
# 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';
};
feature 'performance:csv', 'Suppport for performance:csv' => sub {
# Recommended for faster CSV handling.
requires 'Text::CSV_XS';
};
feature 'performance:json', 'Suppport for performance:json' => sub {
# Recommended for faster AJAX/JavaScript handling.
requires 'JSON::XS';
};
feature 'performance:redis', 'Suppport for 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 'plack', 'Required packages if you want to use PSGI/Plack (experimental and advanced)' => sub {
# Support old fashioned CGI in a PSGI application
requires 'CGI::Emulate::PSGI';
# Adapt CGI.pm to the PSGI protocol
requires 'CGI::PSGI';
# Sane persistent database connection
requires 'DBIx::Connector';
# 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';
# Neater path manipulation and some utils
requires 'Path::Class';
# Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)
requires 'Plack';
# Serve static files
requires 'Plack::App::File';
# Set environment variables
requires 'Plack::Middleware::ForceEnv';
# Set HTTP headers
requires 'Plack::Middleware::Header';
# Watch for changed modules in %INC. Depends on Module::Refresh
requires 'Plack::Middleware::Refresh';
# Twist some HTTP variables so that the reverse proxy is transparent
requires 'Plack::Middleware::ReverseProxy';
# Set environment variables
requires 'Plack::Middleware::Rewrite';
# PSGI SOAP adapter
requires 'SOAP::Transport::HTTP::Plack';
};