summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..2fb1b8a
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,19 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ 'NAME' => 'Business::OnlinePayment::IPPay',
+ 'VERSION_FROM' => 'IPPay.pm', # finds $VERSION
+ 'AUTHOR' => 'Jeff Finucane <ippay@weasellips.com>',
+ 'PREREQ_PM' => { 'Business::OnlinePayment' => 3,
+# 'Business::OnlinePayment::HTTPS' => 0,
+ 'Crypt::SSLeay' => 0,
+ 'Date::Calc' => 0,
+ 'HTTP::Request' => 0,
+ 'HTTP::Request::Common' => 0,
+ 'LWP::UserAgent' => 0,
+ 'Text::CSV_XS' => 0,
+ 'Test::More' => 0.42,
+ 'Tie::IxHash' => 0,
+ 'XML::Simple' => 0,
+ 'XML::Writer' => 0,
+ },
+);