-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
28 lines (24 loc) · 934 Bytes
/
Makefile.PL
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
use 5.010001;
# https://www.perl.com/article/how-to-upload-a-script-to-cpan/
use strict;
use warnings;
use ExtUtils::MakeMaker;
# Mojolicious 5.27 first introduced support for nested helpers
WriteMakefile(
NAME => 'Mojolicious::Plugin::Restify',
VERSION_FROM => 'lib/Mojolicious/Plugin/Restify.pm',
ABSTRACT => 'Route shortcuts & helpers for REST collections',
AUTHOR => 'Paul Williams <kwakwa@cpan.org>',
LICENSE => 'artistic_2',
PREREQ_PM => {'Mojolicious' => '5.27'},
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
bugtracker => 'https://github.com/kwakwaversal/mojolicious-plugin-restify/issues',
repository => 'https://github.com/kwakwaversal/mojolicious-plugin-restify.git',
},
no_index => {directory => ['t']}
},
test => {TESTS => 't/*.t'}
);