Initial commit
[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 LICENSE => 'perl',
11 SIGN => 1,
12 BUILD_REQUIRES => {
13 qw/DBD::SQLite 0
14 HTTP::Request::Common 0
15 Plack::Test 0/,
16 },
17 PREREQ_PM => {
18 qw/Authen::Passphrase 0
19 Authen::Passphrase::BlowfishCrypt 0
20 Bytes::Random::Secure 0
21 DBI 0
22 Email::Simple 0
23 Email::Sender::Simple 0
24 Plack::Request 0/,
25 },
26 META_MERGE => {
27 dynamic_config => 0,
28 resources => {
29 repository => 'https://git.ieval.ro/?p=plack-middleware-auth-complex.git',
30 }
31 }
32 );
This page took 0.021722 seconds and 4 git commands to generate.