-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (32 loc) · 809 Bytes
/
Makefile.PL
File metadata and controls
34 lines (32 loc) · 809 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
29
30
31
32
33
34
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
"ABSTRACT" => "SMS::Send backend for the Twilio API.",
"AUTHOR" => "Michiel Beijen <michielb\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30",
},
"MIN_PERL_VERSION" => "5.10.1",
"DISTNAME" => "SMS-Send-Twilio",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "SMS::Send::Twilio",
"PREREQ_PM" => {
"SMS::Send" => 1,
"WWW::Twilio::API" => "0.15",
},
"TEST_REQUIRES" => {
"Test::More" => "0.88",
},
"VERSION_FROM" => "lib/SMS/Send/Twilio.pm",
"test" => {
"TESTS" => "t/*.t"
},
META_MERGE => {
resources => {
repository => 'https://github.com/mbeijen/SMS-Send-Twilio',
bugtracker => 'https://github.com/mbeijen/SMS-Send-Twilio/issues',
},
},
);