-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
39 lines (38 loc) · 1.3 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
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Dancer2::Plugin::DomainModel',
'VERSION_FROM' => 'lib/Dancer2/Plugin/DomainModel.pm',
'AUTHOR' => 'Samuel Smith',
'ABSTRACT_FROM' => 'lib/Dancer2/Plugin/DomainModel.pm',
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => 0
},
'TEST_REQUIRES' => {
'FindBin' => 0,
'File::Temp' => 0,
'Capture::Tiny' => 0,
'Dancer2' => 0,
'Test::More' => 0,
'Plack::Test' => 0,
'HTTP::Request::Common' => 0,
'Dancer2::Plugin::DBIC' => 0,
'Moo' => 0,
'Module::Pluggable::Object' => 0,
'Types::Standard' => 0,
'DBIx::Class' => 0,
},
'PREREQ_PM' => {
'Module::Pluggable::Object' => 0,
'Dancer2::Plugin' => '0.200000',
'Module::Runtime' => 0,
'Carp' => 0,
'namespace::autoclean' => '0.16',
},
'LICENSE' => 'perl_5',
'META_MERGE' => {
'resources' => {
'repository' =>
'https://github.com/smith153/Dancer2-Plugin-DomainModel',
},
},
);