The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Dancer::Plugin::Log::DB',
    AUTHOR              => q{Nikolay Aviltsev <navi@cpan.org>},
    VERSION_FROM        => 'lib/Dancer/Plugin/Log/DB.pm',
    ABSTRACT_FROM       => 'lib/Dancer/Plugin/Log/DB.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => '0.94',
    	'Time::Piece' => '1.1501',
    	'Dancer' => '1.3100',
    	'Dancer::Plugin::Database' => '1.82',
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Dancer-Plugin-Log-DB-*' },
);