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