use parent, not base
[gitmo/Moose-Autobox.git] / Makefile.PL
CommitLineData
37befc62 1use strict;
2use warnings;
f9c0fe82 3use inc::Module::Install 0.96;
4e008ee1 4use Module::Install::AutoManifest;
f9c0fe82 5use Module::Install::ExtraTests;
37befc62 6
7name('Moose-Autobox');
8all_from('lib/Moose/Autobox.pm');
9
0a73bc93 10requires 'autobox' => '2.23';
f3e571b2 11requires 'parent' => 0;
0a73bc93 12requires 'Moose' => '0.42';
3ab2f54a 13requires 'Perl6::Junction' => '1.40000';
37befc62 14
0e480911 15test_requires 'Test::More' => '0.89';
37befc62 16test_requires 'Test::Exception' => '0.21';
17
4e008ee1 18repository 'git://git.moose.perl.org/Moose-Autobox.git';
19
5d4c84f3 20auto_manifest;
37befc62 21tests_recursive;
ca2e2c86 22extra_tests;
37befc62 23
24WriteAll;