bump version
[catagits/Web-Simple.git] / Makefile.PL
CommitLineData
e4e3b52c 1use strict;
2use warnings FATAL => 'all';
1f993d62 3use 5.008001;
4use ExtUtils::MakeMaker;
e4e3b52c 5
1f993d62 6(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
e4e3b52c 7
1f993d62 8WriteMakefile(
9136e7f4 9 NAME => 'Web::Simple',
1f993d62 10 VERSION_FROM => 'lib/Web/Simple.pm',
ce2f59db 11 PREREQ_PM => { },
12 MIN_PERL_VERSION => '5.006',
13
14 META_MERGE => {
15 'meta-spec' => { version => 2 },
16 dynamic_config => 0,
17 resources => {
18 # r/w: p5sagit@git.shadowcat.co.uk:Web-Simple.git
19 repository => {
20 url => 'git://git.shadowcat.co.uk/p5sagit/Web-Simple.git',
21 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Web-Simple.git',
22 type => 'git',
23 },
24 bugtracker => {
25 mailto => 'bug-Web-Simple@rt.cpan.org',
26 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Web-Simple',
27 },
28 },
29 prereqs => {
30 runtime => {
31 requires => {
32 'Carp' => '0',
33 'Encode' => '0',
34 'Exporter' => '0',
35 'File::Glob' => '0',
36 'HTTP::Body' => '0',
37 'HTTP::Headers' => '0',
38 'HTTP::Request' => '0',
39 'IO::Handle' => '0',
40 'MIME::Base64' => '0',
41 'Moo' => '0.009014',
42 'Plack' => '0.9968',
43 'Scalar::Util' => '0',
44 'Sub::Quote' => '0',
45 'Syntax::Keyword::Gather' => '1.001',
46 'URI' => '0',
ce2f59db 47 'base' => '0',
48 'overload' => '0',
49 'strict' => '0',
50 'strictures' => '1',
51 'warnings' => '0',
52 'warnings::illegalproto' => '0',
53 },
54 },
55 test => {
56 requires => {
57 'Data::Dumper::Concise' => '2.020',
58 'HTTP::Request::AsCGI' => '0',
59 'HTTP::Request::Common' => '0',
60 'HTTP::Response' => '0',
61 'Socket' => '0',
62 'Test::More' => '0.88',
63 },
64 recommends => {
65 'Devel::Cycle' => '0',
66 },
67 },
68 },
1f993d62 69 },
ce2f59db 70
f80844de 71 realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
1f993d62 72);