-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
28 lines (25 loc) · 913 Bytes
/
Makefile.PL
File metadata and controls
28 lines (25 loc) · 913 Bytes
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 strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker;
WriteMakefile
(
NAME => 'Device::WallyHome',
PREREQ_PM => {
'Data::Dumper' => '2.161',
'HTTP::Headers' => '6.11',
'HTTP::Request' => '6.11',
'JSON::MaybeXS' => '1.003008',
'List::Util' => '1.46',
'LWP::Protocol::https' => '6.06',
'LWP::UserAgent' => '6.15',
'Module::Loader' => '0.03',
'Moo' => '2.003000',
'Moo::Role' => '2.000002',
'MooX::Types::MooseLike::Base' => '0.029',
'namespace::autoclean' => '0.16',
'Test::Exception' => '0.43',
'Test::More' => '1.302067',
},
VERSION_FROM => 'lib/Device/WallyHome.pm',
);