-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
48 lines (39 loc) · 1.46 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use 5.010_001;
use strict;
use warnings FATAL => 'all';
use lib '.';
use inc::Module::Install 0.91;
homepage 'http://search.cpan.org/perldoc?DBIx%3A%3AClass%3A%3ASims';
resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
resources 'license' => 'http://dev.perl.org/licenses/';
resources 'repository' => 'https://github.com/robkinyon/dbix-class-sims',
resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class-Sims';
perl_version '5.010_001';
all_from 'lib/DBIx/Class/Sims.pm';
requires 'strictures' => '2';
requires 'Data::Compare';
requires 'Data::Printer' => '0.36'; # np() isn't exported before 0.36+
requires 'Data::Walk';
requires 'DateTime';
requires 'DateTime::Event::Random';
requires 'DBIx::Class::TopoSort' => '0.060000';
requires 'Hash::Merge';
requires 'JSON::MaybeXS';
requires 'List::MoreUtils';
requires 'List::PowerSet';
requires 'List::Util';
requires 'Scalar::Util';
requires 'String::Random';
requires 'Try::Tiny';
requires 'YAML::Any'; # Removes a warning.
test_requires 'File::Temp' => '0.01';
test_requires 'JSON' => '0.01';
test_requires 'Test::DBIx::Class' => '0.01';
test_requires 'Test::Warn' => '0.01';
test_requires 'Test::Trap' => '0.3.2';
test_requires 'DBD::SQLite' => '1.40';
test_requires 'Test2::Suite' => '0.000122'; # improved test tools
tests_recursive;
auto_install;
WriteAll;