Use Data::Entropy for random numbers
[plack-middleware-auth-complex.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Plack::Middleware::Auth::Complex',
6 VERSION_FROM => 'lib/Plack/Middleware/Auth/Complex.pm',
7 ABSTRACT_FROM => 'lib/Plack/Middleware/Auth/Complex.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 EXE_FILES => ['authcomplex-passwd'],
11 LICENSE => 'perl',
12 SIGN => 1,
13 BUILD_REQUIRES => {
14 qw/DBD::SQLite 0
15 HTTP::Request::Common 0
16 Plack::Test 0/,
17 },
18 PREREQ_PM => {
19 qw/Authen::Passphrase 0
20 Authen::Passphrase::BlowfishCrypt 0
21 Data::Entropy 0
22 DBI 0
23 Email::Simple 0
24 Email::Sender::Simple 0
25 IO::Prompter 0
26 Plack::Request 0
27 Tie::Hash::Expire 0/,
28 },
29 META_MERGE => {
30 dynamic_config => 0,
31 resources => {
32 repository => 'https://git.ieval.ro/?p=plack-middleware-auth-complex.git',
33 }
34 }
35 );
This page took 0.022363 seconds and 4 git commands to generate.