Truly fix literal+bind examples (build upon a3e3e6a18)
[dbsrgits/SQL-Abstract.git] / Makefile.PL
CommitLineData
06c1f5bb 1use inc::Module::Install 1.06;
d4705371 2use strict;
3use warnings;
4
1a6addf7 5use 5.006;
d4705371 6
1a6addf7 7perl_version '5.006';
d4705371 8name 'SQL-Abstract';
4f0516bc 9author 'Nathan Wiger <nate@wiger.org>';
d8cc1792 10resources 'license' => 'http://dev.perl.org/licenses/';
11resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git';
12resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract';
a9bd742a 13resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
d4705371 14
15all_from 'lib/SQL/Abstract.pm';
16
b5f4fb92 17dynamic_config 0;
18
fdfbbc65 19requires 'List::Util' => 0;
20requires 'Scalar::Util' => 0;
0da0fe34 21requires 'Exporter' => 5.57;
c54740ba 22requires 'Moo' => 1.004002;
23requires 'Hash::Merge' => 0.12;
d4705371 24
c54740ba 25test_requires "Test::More" => 0.88;
26test_requires "Test::Exception" => 0.31;
d4705371 27test_requires "Test::Warn" => 0;
c54740ba 28test_requires "Test::Deep" => 0.101;
75151f36 29test_requires "Storable" => 0; # for cloning in tests
d4705371 30
0d5df7d6 31no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
1dc93d17 32no_index directory => 'examples';
33
d4705371 34tests_recursive 't';
35
536dbae1 36auto_install();
37
d4705371 38WriteAll();