forked from interchange/Flowers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
41 lines (40 loc) · 1.22 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
33
34
35
36
37
38
39
40
41
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Flowers',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Flowers.pm',
ABSTRACT_FROM => 'lib/Flowers.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'YAML' => 0,
'Dancer' => 1.3080,
'Dancer::Session::DBIC' => 0,
'Dancer::Plugin::Database' => 0,
'Dancer::Plugin::Auth::Extensible' => 0,
'Dancer::Plugin::Auth::Extensible::Provider::DBIC' => 0,
'DBD::mysql' => 0,
'Dancer::Plugin::Interchange6' => 0.008,
'Template::Flute' => 0.0104,
'Dancer::Template::TemplateFlute' => 0.0104,
'Number::Format' => 0,
'DateTime' => 0,
'DateTime::Locale' => 0,
'Input::Validator' => 0,
'Data::Transpose' => 0.0008,
'Business::OnlinePayment' => 3.01,
'Moo' => 0.009013,
'DBIx::Class' => 0,
'Dancer::Plugin::DBIC' => 0,
'Interchange6::Schema' => 0.013,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Flowers-*' },
);