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 strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Dancer::Plugin::Auth::Facebook',
    AUTHOR        => 'Prajith <prajith@ndimensionz.com, prajithpalakkuda@gmail.com>',
    VERSION_FROM  => 'lib/Dancer/Plugin/Auth/Facebook.pm',
    ABSTRACT_FROM => 'lib/Dancer/Plugin/Auth/Facebook.pm',
    PL_FILES      => {},
    PREREQ_PM     => {
        'Dancer'  => 0,
        'Dancer::Plugin' => 0,
        'Carp' => 0,
        'Net::Facebook::Oauth2' => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Dancer-Plugin-Auth-Facebook*' },
);