Set up prereqs
authormark <mark>
Tue, 2 Feb 2010 02:20:40 +0000 (02:20 +0000)
committermark <mark>
Tue, 2 Feb 2010 02:20:40 +0000 (02:20 +0000)
Changes
GlobalPayments.pm
Makefile.PL
README

diff --git a/Changes b/Changes
index ed7b474..a76d3d7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Business-OnlinePayment-GlobalPayments
 
+0.02    Mon Feb  1 17:48:57 PST 2010
+        Prereqs, minor documentation changes.
 0.01    Fri Jan 29 13:05:00 PST 2010
         Initial release.
 
index a6ed89e..cb3a7b6 100644 (file)
@@ -7,7 +7,7 @@ use vars qw($VERSION $DEBUG @ISA $me);
 use base 'Business::OnlinePayment::HTTPS';
 use XML::Simple 'XMLin'; # for parsing reply
 
-$VERSION = 0.01;
+$VERSION = 0.02;
 $DEBUG = 0;
 $me = __PACKAGE__;
 
@@ -223,16 +223,16 @@ The following transaction types are supported:
   Credit
   Void
 
-For Post Authorization, Credit, and Void, 'order_number' should be set to 
+For Post Authorization, Credit, and Void, I<order_number> should be set to 
 the order_number of the previous transaction.
 
-Alternately, Post Authorization can be sent with 'authorization' set to an 
+Alternately, Post Authorization can be sent with I<authorization> set to an 
 auth code obtained by telephone.  Similarly, Credit can be sent with credit 
-account information instead of an order_number.
+account information instead of an I<order_number>.
 
 By default, Global Transport will reject duplicate transactions (identical 
 card number, expiration date, and amount) sent on the same day.  This can be 
-overridden by setting 'force_duplicate' => 1.
+overridden by setting I<force_duplicate> => 1.
 
 =head1 AUTHOR
 
index ff2517f..cf03c00 100644 (file)
@@ -13,6 +13,9 @@ WriteMakefile(
     PL_FILES            => {},
     PREREQ_PM => {
         'Test::More' => 0,
+        'Business::OnlinePayment' => 3,
+        'Business::OnlinePayment::HTTPS' => 0,
+        'XML::Simple' => 0,
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Business-OnlinePayment-GlobalPayments-*' },
diff --git a/README b/README
index 589c628..0891ea4 100644 (file)
--- a/README
+++ b/README
@@ -31,10 +31,14 @@ You can also look for information at:
     Search CPAN
         http://search.cpan.org/dist/Business-OnlinePayment-GlobalPayments/
 
+Support for commercial users is available from:
+
+    Freeside Internet Services, Inc.
+        http://www.freeside.biz
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2009 Mark Wells
+Copyright (C) 2009 Mark Wells <mark@freeside.biz>
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.