Reverted andyg's fixes to DBI.pm, updated tests accordingly.
[dbsrgits/DBIx-Class.git] / Build.PL
CommitLineData
5d283305 1use strict;
2use Module::Build;
3
4my %arguments = (
5 create_makefile_pl => 'passthrough',
6 license => 'perl',
7 module_name => 'DBIx::Class',
8 requires => {
59f8e584 9 'Data::Page' => 0,
227d4dee 10 'DBI' => 0,
11 'UNIVERSAL::require' => 0,
12 'NEXT' => 0,
7fa9bab8 13 'Scalar::Util' => 0,
110401ea 14 'SQL::Abstract' => 1.19,
aeaf3ce2 15 'SQL::Abstract::Limit' => 0.033,
227d4dee 16 'DBD::SQLite' => 1.08,
17 'Tie::IxHash' => 0,
5d283305 18 },
19 create_makefile_pl => 'passthrough',
20 create_readme => 1,
21 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
22);
23
24Module::Build->new(%arguments)->create_build_script;
25