Skip to content

Commit

Permalink
Added repository cpan metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
dsteinbrunner committed Sep 3, 2013
1 parent b555fc8 commit c6e12e5
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions Makefile.PL
Expand Up @@ -6,13 +6,18 @@ use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Mojolicious::Plugin::CSRFProtect',
VERSION_FROM => 'lib/Mojolicious/Plugin/CSRFProtect.pm',
NAME => 'Mojolicious::Plugin::CSRFProtect',
VERSION_FROM => 'lib/Mojolicious/Plugin/CSRFProtect.pm',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/CSRFProtect.pm',
AUTHOR => 'Viktor Turskyi <koorchik@cpan.org>',
PREREQ_PM => { 'Mojolicious' => '3.85' },
AUTHOR => 'Viktor Turskyi <koorchik@cpan.org>',
PREREQ_PM => { 'Mojolicious' => '3.85' },
MIN_PERL_VERSION => 5.010,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mojolicious-Plugin-CSRFProtect-*' },
test => { TESTS => 't/*.t' },
META_MERGE => {
resources => {
repository => 'https://github.com/koorchik/Mojolicious-Plugin-CSRFProtect',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mojolicious-Plugin-CSRFProtect-*' },
test => { TESTS => 't/*.t' },
);

0 comments on commit c6e12e5

Please sign in to comment.