Bump the minimum Moose version to 0.28, because we had a test failure from some guy...
[gitmo/MooseX-Singleton.git] / Makefile.PL
CommitLineData
08d77609 1use strict;
2use warnings;
3use inc::Module::Install;
4
5name 'MooseX-Singleton';
6all_from 'lib/MooseX/Singleton.pm';
7
1bffae4e 8requires 'Moose' => '0.28';
08d77609 9
10build_requires 'Test::More';
11build_requires 'Test::Exception';
12
13license 'Perl';
14
15WriteAll();