depend on a specific perl version (determined via Perl::MinimumVersion)
[gitmo/MooseX-Storage.git] / Makefile.PL
CommitLineData
399f3500 1# Load the Module::Install bundled in ./inc/
7ce0b877 2use inc::Module::Install 0.75;
f3cef250 3use Module::Install::AuthorRequires;
4use Module::Install::AuthorTests;
399f3500 5
6# Define metadata
7name 'MooseX-Storage';
8all_from 'lib/MooseX/Storage.pm';
9
0c8aa617 10perl_version '5.008';
11
399f3500 12# Specific dependencies
d7ef03f6 13requires 'Moose' => '0.99';
25697231 14requires 'String::RewritePrefix';
399f3500 15
ba17e629 16author_requires 'Test::Without::Module';
17
399f3500 18# you should have at least one
19# serialization format
9566cef2 20auto_install; # Needed for features to work. RT#67170
399f3500 21feature 'JSON',
22 -default => 1,
cfee09ad 23 'JSON::Any' => '1.15',
24 'Test::JSON' => '0.06';
9566cef2 25
ba17e629 26author_requires 'JSON::Any' => '1.15';
27author_requires 'Test::JSON' => '0.06';
399f3500 28
29feature 'YAML',
30 -default => 1,
f16b5740 31 'YAML::Any' => '0';
ba17e629 32author_requires 'YAML::Any';
399f3500 33
34feature 'Storable',
35 -default => 1,
36 'Storable' => '0';
ba17e629 37author_requires 'Storable';
399f3500 38
39# and the ability to save the
40# file to disk
41feature 'File',
42 -default => 1,
43 'IO::File' => '0.1';
ba17e629 44author_requires 'IO::File' => '0.1';
399f3500 45
f3cef250 46author_tests 't/author';
47
049541bd 48build_requires 'Test::More' => '0.88';
eaa26357 49build_requires 'Test::Deep' => '0';
9d3c60f5 50build_requires 'Test::Fatal' => '0';
0b173188 51build_requires 'Test::Requires' => '0.05';
399f3500 52
bc3a07d5 53author_requires 'Digest::HMAC';
54author_requires 'Digest::SHA';
f3cef250 55author_requires 'Test::Pod' => '1.14';
56author_requires 'Test::Pod::Coverage' => '1.08';
57
b47a0bbd 58# r/w: gitmo@git.moose.perl.org:MooseX-Storage.git
c557e792 59resources repository => 'git://git.moose.perl.org/MooseX-Storage.git';
00c90522 60
399f3500 61WriteAll;
00c90522 62