-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.PL
32 lines (31 loc) · 1.11 KB
/
Makefile.PL
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
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer2::Plugin::Passphrase',
AUTHOR => q{Henk van Oers <[email protected]>},
VERSION_FROM => 'lib/Dancer2/Plugin/Passphrase.pm',
ABSTRACT_FROM => 'lib/Dancer2/Plugin/Passphrase.pm',
($ExtUtils::MakeMaker::VERSION >= 6.48
? ('LICENSE'=> 'perl')
: ()),
MIN_PERL_VERSION => 5.008001,
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Crypt::Bcrypt' => '0.006',
'Dancer2' => '0.200000',
'Digest::Bcrypt' => '1.212',
'Digest::SHA' => 5.74,
'Data::Entropy' => 0.007,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer2-Plugin-Passphrase-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/PerlDancer/Dancer2-Plugin-Passphrase',
bugtracker => 'https://github.com/PerlDancer/Dancer2-Plugin-Passphrase/issues',
homepage => 'https://github.com/PerlDancer/Dancer2-Plugin-Passphrase/',
},
},
);