1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME          => 'Dancer2::Plugin::Auth::Extensible::Provider::Database',
7    AUTHOR        => q{David Precious <davidp@preshweb.co.uk>},
8    VERSION_FROM  => 'lib/Dancer2/Plugin/Auth/Extensible/Provider/Database.pm',
9    ABSTRACT_FROM => 'lib/Dancer2/Plugin/Auth/Extensible/Provider/Database.pm',
10    ( $ExtUtils::MakeMaker::VERSION >= 6.48
11        ? ( 'LICENSE' => 'perl' )
12        : () ),
13    PL_FILES       => {},
14    BUILD_REQUIRES => {
15        'Path::Tiny'                              => '0.016',
16        'Test::More'                              => 0,
17        'Dancer2::Plugin::Auth::Extensible::Test' => 0,
18        'DBD::SQLite'                             => 0,
19    },
20    PREREQ_PM => {
21        'Carp'                              => 0,
22        'Dancer2'                           => '0.200000',
23        'Dancer2::Plugin::Auth::Extensible' => '0.620',
24        'Dancer2::Plugin::Database'         => '2.16',
25        'Moo'                               => '2.000000',
26        'namespace::clean'                  => 0,
27        'YAML' => 0,    # for config files and tests
28    },
29    EXE_FILES => [],
30    dist      => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
31    clean => { FILES => 'Dancer2-Plugin-Auth-Extensible-Provider-Database-*' },
32    META_MERGE => {
33        resources => {
34            repository =>
35'https://github.com/PerlDancer/Dancer2-Plugin-Auth-Extensible-Provider-Database',
36            bugtracker =>
37'https://github.com/PerlDancer/Dancer2-Plugin-Auth-Extensible-Provider-Database/issues',
38            homepage =>
39'https://github.com/PerlDancer/Dancer2-Plugin-Auth-Extensible-Provider-Database/',
40            IRC => 'irc://irc.perl.org/#dancer',
41        },
42    },
43
44);
45