Merge branch 'master' of git://github.com/bobtfish/Business-PayPal-API
This commit is contained in:
commit
d1a4d0d801
6 changed files with 25 additions and 42 deletions
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Business-PayPal-API-*
|
||||||
|
META.yml
|
||||||
|
Makefile
|
||||||
|
Makefile.old
|
||||||
|
blib
|
||||||
|
pm_to_blib
|
||||||
|
MANIFEST
|
||||||
|
MANIFEST.bak
|
||||||
|
|
30
MANIFEST
30
MANIFEST
|
@ -1,30 +0,0 @@
|
||||||
Changes
|
|
||||||
Makefile.PL
|
|
||||||
MANIFEST
|
|
||||||
README
|
|
||||||
eg/paypal-checkout-example.pl
|
|
||||||
lib/Business/PayPal/API.pm
|
|
||||||
lib/Business/PayPal/API/AuthorizationRequest.pm
|
|
||||||
lib/Business/PayPal/API/CaptureRequest.pm
|
|
||||||
lib/Business/PayPal/API/DirectPayments.pm
|
|
||||||
lib/Business/PayPal/API/ExpressCheckout.pm
|
|
||||||
lib/Business/PayPal/API/GetTransactionDetails.pm
|
|
||||||
lib/Business/PayPal/API/MassPay.pm
|
|
||||||
lib/Business/PayPal/API/ReauthorizationRequest.pm
|
|
||||||
lib/Business/PayPal/API/RecurringPayments.pm
|
|
||||||
lib/Business/PayPal/API/RefundTransaction.pm
|
|
||||||
lib/Business/PayPal/API/TransactionSearch.pm
|
|
||||||
lib/Business/PayPal/API/VoidRequest.pm
|
|
||||||
t/API.pl
|
|
||||||
t/Business-PayPal-API.t
|
|
||||||
t/DirectPayments.t
|
|
||||||
t/ExpressCheckout.t
|
|
||||||
t/ExpressOrder.t
|
|
||||||
t/GetTransactionDetails.t
|
|
||||||
t/MassPay.t
|
|
||||||
t/RecurringPayments.t
|
|
||||||
t/RefundTransaction.t
|
|
||||||
t/TransactionSearch.t
|
|
||||||
auth.sample.3token
|
|
||||||
auth.sample.cert
|
|
||||||
META.yml
|
|
11
MANIFEST.SKIP
Normal file
11
MANIFEST.SKIP
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
^Business-PayPal-API-
|
||||||
|
\.git
|
||||||
|
blib/
|
||||||
|
\.DS_Store$
|
||||||
|
pm_to_blib$
|
||||||
|
Makefile$
|
||||||
|
MANIFEST\.SKIP$
|
||||||
|
MANIFEST\.bak$
|
||||||
|
Makefile\.old$
|
||||||
|
\.shipit
|
||||||
|
|
11
META.yml
11
META.yml
|
@ -1,11 +0,0 @@
|
||||||
# http://module-build.sourceforge.net/META-spec.html
|
|
||||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
|
||||||
name: Business-PayPal-API
|
|
||||||
version: 0.62
|
|
||||||
version_from: lib/Business/PayPal/API.pm
|
|
||||||
installdirs: site
|
|
||||||
requires:
|
|
||||||
SOAP::Lite: 0.67
|
|
||||||
|
|
||||||
distribution_type: module
|
|
||||||
generated_by: ExtUtils::MakeMaker version 6.30
|
|
|
@ -6,6 +6,11 @@ WriteMakefile(
|
||||||
NAME => 'Business::PayPal::API',
|
NAME => 'Business::PayPal::API',
|
||||||
VERSION_FROM => 'lib/Business/PayPal/API.pm',
|
VERSION_FROM => 'lib/Business/PayPal/API.pm',
|
||||||
PREREQ_PM => { SOAP::Lite => 0.67 },
|
PREREQ_PM => { SOAP::Lite => 0.67 },
|
||||||
|
META_ADD => {
|
||||||
|
resources => {
|
||||||
|
repository => 'git://github.com/hembreed/Business-PayPal-API.git',
|
||||||
|
},
|
||||||
|
},
|
||||||
($] >= 5.005 ?
|
($] >= 5.005 ?
|
||||||
(ABSTRACT_FROM => 'lib/Business/PayPal/API.pm',
|
(ABSTRACT_FROM => 'lib/Business/PayPal/API.pm',
|
||||||
AUTHOR => 'Scott Wiersdorf <scott@perlcode.org>') : ()),
|
AUTHOR => 'Scott Wiersdorf <scott@perlcode.org>') : ()),
|
||||||
|
|
|
@ -8,7 +8,6 @@ use SOAP::Lite 0.67; # +trace => 'all';
|
||||||
use Carp qw(carp);
|
use Carp qw(carp);
|
||||||
|
|
||||||
our $VERSION = '0.69';
|
our $VERSION = '0.69';
|
||||||
our $CVS_VERSION = '$Id: API.pm,v 1.24 2009/07/28 18:00:58 scott Exp $';
|
|
||||||
our $Debug = 0;
|
our $Debug = 0;
|
||||||
|
|
||||||
## NOTE: This package exists only until I can figure out how to use
|
## NOTE: This package exists only until I can figure out how to use
|
||||||
|
|
Loading…
Reference in a new issue