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 42 43 44
|
use 5.010;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PGObject::Util::DBAdmin',
AUTHOR => q{Chris Travers <chris@efficito.com>},
VERSION_FROM => 'lib/PGObject/Util/DBAdmin.pm',
ABSTRACT_FROM => 'lib/PGObject/Util/DBAdmin.pm',
LICENSE => 'BSD',
PL_FILES => {},
MIN_PERL_VERSION => 5.010,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Test::Exception' => 0,
'Perl::Critic' => 0,
'Perl::Critic::Policy::Modules::RequireExplicitInclusion' => 0,
},
PREREQ_PM => {
'DBD::Pg' => 0,
'Capture::Tiny' => 0,
'DBI' => 0,
'Moo' => 0,
'Log::Any' => 0,
'Scope::Guard' => 0,
'namespace::clean' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PGObject-Util-DBAdmin-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ledgersmb/PGObject-Util-DBAdmin.git',
web => 'https://github.com/ledgersmb/PGObject-Util-DBAdmin',
},
},
},
);
|