Add perlcritic test and make code comply
[poe-component-irc-plugin-infobot.git] / Makefile.PL
CommitLineData
03a20c06 1use 5.014000;
30023d12
MG
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
ac607520
MG
5 NAME => 'POE::Component::IRC::Plugin::Infobot',
6 VERSION_FROM => 'lib/POE/Component/IRC/Plugin/Infobot.pm',
7 ABSTRACT_FROM => 'lib/POE/Component/IRC/Plugin/Infobot.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
ac607520 9 MIN_PERL_VERSION => '5.14.0',
03a20c06
MG
10 LICENSE => 'perl',
11 SIGN => 1,
ac607520 12 PREREQ_PM => {
03a20c06
MG
13 qw/POE::Component::IRC::Plugin 0
14 IRC::Utils 0.12
15 DB_File 0/,
ac607520
MG
16 },
17 BUILD_REQUIRES => {
03a20c06
MG
18 qw/Test::MockObject 0/,
19 },
20 META_MERGE => {
21 dynamic_config => 0,
22 resources => {
23 repository => 'http://git.ieval.ro/?p=poe-component-irc-plugin-infobot.git',
24 }
25 },
30023d12 26);
This page took 0.011215 seconds and 4 git commands to generate.