Skip to content

Commit

Permalink
Issue #1389: Add Crypt::JWT to the docker cpanfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
svenoe committed Nov 18, 2021
1 parent 0ad3b93 commit 2079d7d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
35 changes: 18 additions & 17 deletions bin/otobo.CheckModules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -170,23 +170,24 @@ =head1 DESCRIPTION

# defines a set of features considered standard for docker environments
my %IsDockerFeature = (
'db:mysql' => 1,
'db:odbc' => 1,
'db:postgresql' => 1,
'db:sqlite' => 1,
'devel:encoding' => 1,
'devel:test' => 1,
'div:bcrypt' => 1,
'div:ldap' => 1,
'div:xslt' => 1,
'gazelle' => 1,
'mail:imap' => 1,
'mail:ntlm' => 1,
'mail:sasl' => 1,
'performance:csv' => 1,
'performance:json' => 1,
'performance:redis' => 1,
'storage:s3' => 1,
'db:mysql' => 1,
'db:odbc' => 1,
'db:postgresql' => 1,
'db:sqlite' => 1,
'devel:encoding' => 1,
'devel:test' => 1,
'div:bcrypt' => 1,
'div:ldap' => 1,
'div:xslt' => 1,
'gazelle' => 1,
'mail:imap' => 1,
'mail:ntlm' => 1,
'mail:sasl' => 1,
'performance:csv' => 1,
'performance:json' => 1,
'performance:redis' => 1,
'storage:s3' => 1,
'auth:openidconnect' => 1,
);

# Used for the generation of a cpanfile.
Expand Down
6 changes: 6 additions & 0 deletions cpanfile.docker
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ requires 'Const::Fast';
# 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 MySQL database.
requires 'DBD::mysql';
Expand Down

0 comments on commit 2079d7d

Please sign in to comment.