The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME            => "Mojolicious::Plugin::Check",
    VERSION_FROM    => "lib/Mojolicious/Plugin/Check.pm",
    ABSTRACT_FROM   => "lib/Mojolicious/Plugin/Check.pm",
    MAKEFILE        => 'Makefile',
    LICENSE         => 'Perl',
    AUTHOR          => [
        'Dmitry E. Oboukhov <unera@debian.org>,',
        'Roman V. Nikolaev <rshadow@rambler.ru>',
    ],
    MIN_PERL_VERSION => '5.10.0',
    PREREQ_PM       => {
        'Mojolicious'                   => '0',
    },
    META_MERGE => {
        resources => {
            homepage =>
                'https://github.com/dr-co/libmojolicious-plugin-check-perl',
            repository =>
                'https://github.com/dr-co/libmojolicious-plugin-check-perl',
            bugtracker =>
                'https://github.com/dr-co/libmojolicious-plugin-check-perl/issues',
        }
   },
);