switch to Module::Install. add pod/podcoverage tests. fix coverage. add README. fix...
[catagits/Catalyst-Authentication-Credential-HTTP.git] / Makefile.PL
index 58e61fd..c1501a6 100644 (file)
@@ -1,18 +1,16 @@
-use ExtUtils::MakeMaker;
-WriteMakefile(
-    'NAME'         => 'Catalyst::Plugin::Authentication::Credential::HTTP',
-    'VERSION_FROM' => 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm',
-    'PREREQ_PM'    => {
-        'Catalyst'                         => '5.49',
-        'Catalyst::Plugin::Authentication' => 0,
-        'Data::UUID'                       => '0.11',
-        'String::Escape'                   => 0,
-        'Test::Exception'                  => 0,
-        'Test::MockObject'                 => '1.01',
-        'URI::Escape'                      => 0,
-    },
-    'INSTALLDIRS' => 'site',
-    'EXE_FILES'   => [],
-    'PL_FILES'    => {},
-    'SIGN'        => 1,
-);
+use inc::Module::Install 0.65;
+
+name 'Catalyst-Plugin-Authentication-Credential-HTTP';
+all_from 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm';
+
+requires 'Catalyst::Runtime';
+requires 'Catalyst::Plugin::Authentication';
+requires 'Data::UUID' => '0.11';
+requires 'String::Escape';
+requires 'Test::Exception';
+requires 'Test::MockObject';
+requires 'URI::Escape';
+
+auto_install;
+WriteAll;
+