changed set_primary_key() to use Tie::IxHash so order of pk's is remembered. this...
[dbsrgits/DBIx-Class.git] / Build.PL
1 use strict;
2 use Module::Build;
3
4 my %arguments = (
5     create_makefile_pl => 'passthrough',
6     license            => 'perl',
7     module_name        => 'DBIx::Class',
8     requires           => {
9         'DBI'           => 0,
10         'NEXT'          => 0,
11         'DBD::SQLite'   => 1.08,
12         'Tie::IxHash'   => 0,
13     },
14     create_makefile_pl => 'passthrough',
15     create_readme      => 1,
16     test_files         => [ glob('t/*.t'), glob('t/*/*.t') ]
17 );
18
19 Module::Build->new(%arguments)->create_build_script;
20