diff options
author | ivan <ivan> | 2002-08-14 01:01:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-14 01:01:16 +0000 |
commit | 2b847ae10c7b42b9207fddb94579c7f67bf9a004 (patch) | |
tree | 861dcd47bce0678241f8f4fa14f9c81f9c3d67c7 | |
parent | 351f9da3465b9901cfe596b4420cd8cb64e4e347 (diff) |
-rw-r--r-- | BankOfAmerica.pm | 6 | ||||
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 4 | ||||
-rw-r--r-- | README | 2 |
4 files changed, 9 insertions, 6 deletions
diff --git a/BankOfAmerica.pm b/BankOfAmerica.pm index adeb175..23ca8c9 100644 --- a/BankOfAmerica.pm +++ b/BankOfAmerica.pm @@ -1,6 +1,6 @@ package Business::OnlinePayment::BankOfAmerica; -# $Id: BankOfAmerica.pm,v 1.1 2001-09-26 03:33:32 ivan Exp $ +# $Id: BankOfAmerica.pm,v 1.2 2002-08-14 01:01:16 ivan Exp $ use strict; use Carp qw(croak); @@ -14,7 +14,7 @@ require Exporter; @ISA = qw(Exporter AutoLoader Business::OnlinePayment); @EXPORT = qw(); @EXPORT_OK = qw(); -$VERSION = '1.00'; +$VERSION = '1.01'; sub set_defaults { my $self = shift; @@ -329,7 +329,7 @@ There is no way to run test transactions against the settlement API. Ivan Kohler <ivan-bofa@420.am> -Based on Businss::OnlinePayment::AuthorizeNet written by Jason Kohles. +Based on Business::OnlinePayment::AuthorizeNet written by Jason Kohles. =head1 SEE ALSO @@ -1,7 +1,8 @@ Revision history for Perl extension Business::OnlinePayment::BankOfAmerica. -1.01 unreleased +1.01 Tue Aug 13 18:00:25 2002 - update README + - declare dependancy on Business::OnlinePayment 1.00 Tue Sep 25 20:28:51 2001 - upload to CPAN. diff --git a/Makefile.PL b/Makefile.PL index cbeb20f..2f2ada7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,8 @@ WriteMakefile( 'VERSION_FROM' => 'BankOfAmerica.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler <ivan-authorizenet@420.am>', #'NORECURS' => 1, # dont descend into subdirectories - 'PREREQ_PM' => {'Net::SSLeay' => 0 }, #, 'Text::CSV' => 0}, + 'PREREQ_PM' => { 'Net::SSLeay' => 0, + 'Business::OnlinePayment' => 0, + }, #'dist' => {CI => 'ci -l'}, ); @@ -14,7 +14,7 @@ http://www.bankofamerica.com/merchantservices/index.cfm?template=merch_ic_estore The settlement API is documented at https://manager.bamart.com/welcome/SettlementAPI.pdf -It based on Businss::OnlinePayment::AuthorizeNet written by Jason Kohles. +It based on Business::OnlinePayment::AuthorizeNet written by Jason Kohles. There are additional tests in t2/ that may be useful to you once you have a merchant_id, login and password. |