|
my $build = Module::Build->new(
license => 'perl' ,
module_name => 'DBIx::Migration' ,
configure_requires => {
'CPAN::Meta::Converter' => 2.150010,
'CPAN::Meta::YAML' => 0.020,
'Module::Build' => 0.42,
'JSON::PP' => 4.16
},
test_requires => {
'DBD::SQLite' => 1.27,
'DBD::Mock' => 0,
'Test::API' => 0,
'Test::DatabaseRow' => 0,
'Test::Deep' => 0,
'Test::Fatal' => 0,
'Test::More' => 1.001005,
'Test::Output' => 0,
'Test::PostgreSQL' => 0
},
recommends => {
'Test::Needs' => 0,
'Test::Pod' => 1.26,
'Test::Pod::Coverage' => 1.04,
'Text::Table::Tiny' => 1.02
},
requires => {
'perl' => '5.8.9' ,
'DBI' => 1.33,
'File::Spec' => 0,
'Log::Any' => 1.044,
'Module::Load::Conditional' => 0.60,
'Moo' => 0,
'MooX::SetOnce' => 0,
'MooX::StrictConstructor' => 0,
'Path::Tiny' => 0.062,
'PerlX::Maybe' => 0,
'Pod::Find' => 0,
'Pod::Usage' => 2.05,
'String::Expand' => 0,
'Try::Tiny' => 0,
'Types::Path::Tiny' => 0,
'namespace::clean' => 0
},
create_readme => 1,
script_files => [ glob ( 'script/*' ) ],
test_files => [ glob ( 't/*.t' ) ],
add_to_cleanup => [ 'cover_db/*' ],
meta_merge => {
'meta-spec' => {
version => 2
},
resources => {
repository => {
type => 'git'
},
bugtracker => {
}
}
}
);
$build ->create_build_script;
|