1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'Dancer2::Plugin::Auth::Extensible::Provider::DBIC',
7    AUTHOR              => q{Andy Beverley <andy@andybev.com>},
8    VERSION_FROM        => 'lib/Dancer2/Plugin/Auth/Extensible/Provider/DBIC.pm',
9    ABSTRACT_FROM       => 'lib/Dancer2/Plugin/Auth/Extensible/Provider/DBIC.pm',
10    ($ExtUtils::MakeMaker::VERSION >= 6.3002
11      ? ('LICENSE'=> 'perl')
12      : ()),
13    BUILD_REQUIRES => {
14        'Test::MockObject' => 0,
15        'Test::More'  => 0,
16        'Test::Warn'  => 0,
17        'DateTime::Format::SQLite' => 0,
18    },
19    PREREQ_PM => {
20        'Carp' => 0,
21        'Dancer2' => '0.200000',
22        'Dancer2::Core::Types' => 0,
23        'Dancer2::Plugin::DBIC' => '0.0012',
24        'Dancer2::Plugin::Auth::Extensible' => '0.708',
25        'DateTime' => 0,
26        'DBIx::Class::ResultClass::HashRefInflator' => 0,
27        'Scalar::Util' => 0,
28        'String::CamelCase' => 0,
29        'Moo' => 0,
30        'namespace::clean' => 0,
31    },
32    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
33    clean               => { FILES => 'Dancer2-Plugin-Auth-Extensible-*' },
34    META_MERGE => {
35        resources => {
36            repository => 'https://github.com/ctrlo/Dancer2-Plugin-Auth-Extensible-Provider-DBIC',
37            bugtracker => 'https://github.com/ctrlo/Dancer2-Plugin-Auth-Extensible-Provider-DBIC/issues',
38            homepage   => 'https://github.com/ctrlo/Dancer2-Plugin-Auth-Extensible-Provider-DBIC/',
39            IRC        => 'irc://irc.perl.org/#dancer',
40        },
41    },
42
43);
44