-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.PL
44 lines (40 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::OAuth2::AuthorizationServer',
ABSTRACT_FROM => 'lib/Net/OAuth2/AuthorizationServer.pm',
VERSION_FROM => 'lib//Net/OAuth2/AuthorizationServer.pm',
AUTHOR => 'Lee Johnson <leejo@cpan.org>',
LICENSE => 'perl',
PREREQ_PM => {
'Moo' => '2.000002',
'Types::Standard' => '1.000005',
'MIME::Base64' => 0,
'Time::HiRes' => 0,
'Carp' => 0,
'CryptX' => '0.021',
'Mojo::JWT' => '0.04',
'Try::Tiny' => '0.22',
},
BUILD_REQUIRES => {
'Test::Most' => 0,
'Test::Exception' => 0.32,
},
META_MERGE => {
requires => {
perl => '5.010001'
},
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/module/Net::OAuth2::AuthorizationServer',
bugtracker => 'https://github.com/Humanstate/net-oauth2-authorizationserver/issues',
repository => 'https://github.com/Humanstate/net-oauth2-authorizationserver'
},
},
test => {
RECURSIVE_TEST_FILES => 1,
},
);
# vim: ts=4:sw=4:et