-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.PL
More file actions
36 lines (32 loc) · 1.02 KB
/
Makefile.PL
File metadata and controls
36 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use 5.016;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::AccessLog',
VERSION_FROM => 'lib/Mojolicious/Plugin/AccessLog.pm',
ABSTRACT => 'An AccessLog Plugin for Mojolicious',
AUTHOR => 'Bernhard Graf',
BUILD_REQUIRES => {
'POSIX' => 0,
'Time::Local' => 0,
},
LICENSE => 'perl_5',
META_MERGE => {
requires => {perl => '5.016'},
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/augensalat/mojolicious-plugin-accesslog/issues',
repository => 'https://github.com/augensalat/mojolicious-plugin-accesslog.git',
},
},
PREREQ_PM => {
'Mojolicious' => '3.28',
'IO::File' => 0,
'Scalar::Util' => 0,
'Socket' => 0,
'Time::HiRes' => 0,
'File::Spec' => 0,
},
test => {TESTS => 't/*.t'}
);