-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.PL
43 lines (42 loc) · 1.35 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
use ExtUtils::MakeMaker 6.64;
WriteMakefile(
NAME => 'MooX::Role::JSON_LD',
VERSION_FROM => 'lib/MooX/Role/JSON_LD.pm',
MIN_PERL_VERSION => '5.6.0',
PREREQ_PM => {
List::Util => 1.33,
Moo => 0,
Sub::Quote => 0, # no longer part of Moo
Types::Standard => 0,
JSON::MaybeXS => 0,
},
TEST_REQUIRES => {
Moose => 0,
},
BUILD_REQUIRES => {
Test::More => 0,
namespace::autoclean => 0,
},
ABSTRACT_FROM => 'lib/MooX/Role/JSON_LD.pm',
AUTHOR => 'Dave Cross <[email protected]>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.6.0',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/davorg-cpan/moox-role-json_ld.git',
web => 'https://github.com/davorg-cpan/moox-role-json_ld',
},
bugtracker => {
"web" => "https://github.com/davorg-cpan/moox-role-json_ld/issues"
}
},
x_contributors => [
'Robert Rothenberg <[email protected]>',
'Mohammad S Anwar <[email protected]>',
'Anirvan Chatterjee <[email protected]>',
],
},
);