Commit latest CPAN ver of TWMC to repo
[catagits/Test-WWW-Mechanize-Catalyst.git] / Makefile.PL
1 #!perl
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     'NAME'         => 'Test::WWW::Mechanize::Catalyst',
8     'VERSION_FROM' => 'lib/Test/WWW/Mechanize/Catalyst.pm',
9     'AUTHOR'       => 'Leon Brocard <acme@astray.com>',
10     'ABSTRACT'     => 'Test::WWW::Mechanize for Catalyst',
11     'LICENSE'      => 'perl',
12     'PREREQ_PM'    => {
13         'Catalyst'                                 => '5.00',
14         'Catalyst::Plugin::Session::State::Cookie' => '0',
15         'Catalyst::Plugin::Session::Store::Dummy'  => '0',
16         'LWP'                                      => '5.816',
17         'Test::Exception'                          => '0',
18         'Test::More'                               => '0',
19         'Test::WWW::Mechanize'                     => '1.14',
20         'WWW::Mechanize'                           => '1.50',
21     },
22 );
23