Correct/explicitly specify dependencies
[p5sagit/Class-C3-Componentised.git] / Makefile.PL
CommitLineData
41fbb4f0 1use inc::Module::Install 1.00;
2
3use 5.006002;
4perl_version '5.006002';
20169807 5
6name 'Class-C3-Componentised';
20169807 7author 'Ash Berlin <ash@cpan.org>';
41fbb4f0 8all_from 'lib/Class/C3/Componentised.pm';
20169807 9
c5afd77d 10test_requires 'Test::Exception' => '0.31';
11
12requires 'MRO::Compat' => '0.09';
13requires 'Class::Inspector' => '1.23';
20169807 14
d2b0e111 15# we don't actually need Class::C3. MRO::Compat loads it on 5.8. On 5.10 it
16# isn't needed. However, some existing code relies on us loading Class::C3. We
17# don't want to break it just yet. Therefore we depend directly on Class::C3 as
18# well.
19
3a4635fb 20### !!! IMPORTANT !!! ###
21# tests currently rely on Class::C3 availability, by requiring it directly
22# will need adjustment if the require is removed
d2b0e111 23requires 'Class::C3' => '0.20';
24
06e2d102 25resources repository => 'git://git.shadowcat.co.uk/p5sagit/Class-C3-Componentised.git';
26
20169807 27WriteAll;