bump version
[catagits/Web-Simple.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8 WriteMakefile(
9   NAME => 'Web::Simple',
10   VERSION_FROM => 'lib/Web/Simple.pm',
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',
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     },
69   },
70
71   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
72 );