website/Makefile.PL

17 lines
374 B
Makefile
Raw Normal View History

2022-10-14 20:58:36 -05:00
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION => '0.01',
PREREQ_PM => {
2022-11-03 12:42:42 -05:00
'Mojolicious' => '9.27',
'Email::MIME' => '1.952',
'Email::Sender::Simple' => '2.500',
'File::ChangeNotify' => '0.31',
2023-04-08 00:02:56 -05:00
'Net::LDAPS' => '0.68',
2022-10-14 20:58:36 -05:00
},
test => {TESTS => 't/*.t'}
);