X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Makefile.PL;h=634246db9d0686a41314161d3cfdeac49fb95e0d;hp=1e25b5e4bff7e53b68ad7e863b4f32b1dc378e63;hb=11d52bbdb4fccbe1678d869494acb9d43ae83c99;hpb=701e20e514a3513de3b406a8f65fc468c2f61dea diff --git a/Makefile.PL b/Makefile.PL index 1e25b5e..634246d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,7 +34,7 @@ requires 'Class::Load' => '0.12'; requires 'Class::MOP' => '0.95'; requires 'Data::OptList'; requires 'Moose' => '1.03'; -requires 'MooseX::MethodAttributes::Inheritable' => '0.24'; +requires 'MooseX::MethodAttributes::Role::AttrContainer::Inheritable' => '0.24'; requires 'MooseX::Role::WithOverloading' => '0.09'; requires 'Carp'; requires 'Class::C3::Adopt::NEXT' => '0.07'; @@ -48,7 +48,6 @@ requires 'HTTP::Headers' => '1.64'; requires 'HTTP::Request' => '5.814'; requires 'HTTP::Response' => '5.813'; requires 'HTTP::Request::AsCGI' => '1.0'; -requires 'LWP::UserAgent'; requires 'Module::Pluggable' => '3.9'; requires 'Path::Class' => '0.09'; requires 'Scalar::Util'; @@ -59,7 +58,6 @@ requires 'Tree::Simple' => '1.15'; requires 'Tree::Simple::Visitor::FindByPath'; requires 'Try::Tiny'; requires 'Safe::Isa'; -requires 'URI' => '1.35'; requires 'Task::Weaken'; requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness requires 'MRO::Compat'; @@ -69,16 +67,24 @@ requires 'Devel::InnerPackage'; # No longer core in blead requires 'Plack' => '0.9991'; # IIS6+7 fix middleware requires 'Plack::Middleware::ReverseProxy' => '0.04'; requires 'Plack::Test::ExternalServer'; +requires 'Class::Data::Inheritable'; +requires 'Encode' => '2.49'; +requires 'LWP' => '5.837'; # LWP had unicode fail in 5.8.26 +requires 'URI' => '1.36'; # Install the standalone Regex dispatch modules in order to ease the # depreciation transition requires 'Catalyst::DispatchType::Regex' => '5.90021'; -test_requires 'Class::Data::Inheritable'; test_requires 'Test::Exception'; test_requires 'Test::More' => '0.88'; test_requires 'Data::Dump'; test_requires 'HTTP::Request::Common'; +test_requires 'IO::Scalar'; +test_requires 'HTTP::Status'; + +# see also cpanfile for authordeps -- install via +# cpanm --installdeps --with-develop . # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available my @author_requires; @@ -94,6 +100,8 @@ else { push(@author_requires, 'CatalystX::LeakChecker', '0.05'); push(@author_requires, 'Catalyst::Devel', '1.0'); # For http server test +push(@author_requires, 'Test::WWW::Mechanize::Catalyst', '0.51'); +push(@author_requires, 'Test::TCP', '1.27'); # ditto, ships Net::EmptyPort author_tests('t/author'); author_requires( @@ -109,6 +117,8 @@ author_requires( Test::Pod::Coverage Test::Spelling Pod::Coverage::TrustPod + Catalyst::Plugin::Params::Nested + Catalyst::Plugin::ConfigLoader )); if ($Module::Install::AUTHOR) { @@ -120,6 +130,7 @@ resources( 'IRC' => 'irc://irc.perl.org/#catalyst', 'license', => 'http://dev.perl.org/licenses/', 'homepage', => 'http://dev.catalyst.perl.org/', + # r/w: catagits@git.shadowcat.co.uk:Catalyst-Runtime.git 'repository', => 'git://git.shadowcat.co.uk/catagits/Catalyst-Runtime.git', );