9947cc14744149eabc4bb39cd8c97f4c19453484
[dbsrgits/SQL-Abstract.git] / Makefile.PL
1 use inc::Module::Install 1.06;
2 use strict;
3 use warnings;
4
5 use 5.006;
6
7 perl_version '5.006';
8 name 'SQL-Abstract';
9 author 'Nathan Wiger <nate@wiger.org>';
10 resources 'license'     => 'http://dev.perl.org/licenses/';
11 resources 'repository'  => 'https://github.com/dbsrgits/sql-abstract/';
12 resources 'bugtracker'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract';
13 resources 'IRC'         => 'irc://irc.perl.org/#dbix-class';
14
15 all_from 'lib/SQL/Abstract.pm';
16
17 dynamic_config 0;
18
19 requires 'List::Util'     => '0';
20 requires 'Scalar::Util'   => '0';
21 requires 'Exporter'       => '5.57';
22 requires 'MRO::Compat'    => '0.12';
23 requires 'Moo'            => '2.000001';
24 requires 'Sub::Quote'     => '2.000001';
25 requires 'Hash::Merge'    => '0.12';
26 requires 'Text::Balanced' => '2.00';
27
28 test_requires "Test::More"      => '0.88';
29 test_requires "Test::Exception" => '0.31';
30 test_requires "Test::Warn"      => '0';
31 test_requires "Test::Deep"      => '0.101';
32 test_requires "Storable"        => '0';   # for cloning in tests
33
34 no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
35 no_index directory => 'examples';
36
37 tests_recursive 't';
38
39 auto_install();
40
41 WriteAll();