Comment why each of the RETURNING clauses have their own method
[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/';
af733667 11resources 'repository' => 'https://github.com/dbsrgits/sql-abstract/';
d8cc1792 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
187f46da 19requires 'List::Util' => '0';
20requires 'Scalar::Util' => '0';
21requires 'Exporter' => '5.57';
22requires 'MRO::Compat' => '0.12';
e9f56d7a 23requires 'Moo' => '2.000001';
3d8630d6 24requires 'Sub::Quote' => '2.000001';
187f46da 25requires 'Hash::Merge' => '0.12';
a5f91feb 26requires 'Text::Balanced' => '2.00';
187f46da 27
28test_requires "Test::More" => '0.88';
29test_requires "Test::Exception" => '0.31';
30test_requires "Test::Warn" => '0';
31test_requires "Test::Deep" => '0.101';
32test_requires "Storable" => '0'; # for cloning in tests
d4705371 33
0d5df7d6 34no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
1dc93d17 35no_index directory => 'examples';
36
d4705371 37tests_recursive 't';
38
536dbae1 39auto_install();
40
d4705371 41WriteAll();