Business-BalancedPayments
view release on metacpan or search on metacpan
ExtUtils::MakeMaker: 0
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.031, CPAN::Meta::Converter version 2.142690'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Business-BalancedPayments
requires:
Carp: 0
HTTP::Request::Common: 0
JSON: 0
Method::Signatures: 0
Moo: 0
WebService::Client: 0.0001
resources:
bugtracker: https://github.com/Crowdtilt/Business-BalancedPayments/issues
repository: git://github.com/Crowdtilt/Business-BalancedPayments.git
version: 1.0600
Makefile.PL view on Meta::CPAN
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Business-BalancedPayments",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Business::BalancedPayments",
"PREREQ_PM" => {
"Carp" => 0,
"HTTP::Request::Common" => 0,
"JSON" => 0,
"Method::Signatures" => 0,
"Moo" => 0,
"WebService::Client" => "0.0001"
},
"TEST_REQUIRES" => {
"Exporter" => 0,
"File::Spec" => 0,
"HTTP::Response" => 0,
"IO::Handle" => 0,
Makefile.PL view on Meta::CPAN
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"Exporter" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"HTTP::Request::Common" => 0,
"HTTP::Response" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON" => 0,
"Method::Signatures" => 0,
"Moo" => 0,
"Test::Mock::LWP::Dispatch" => 0,
"Test::Modern" => 0,
"Test::More" => 0,
"WebService::Client" => "0.0001",
lib/Business/BalancedPayments/Base.pm view on Meta::CPAN
package Business::BalancedPayments::Base;
use Moo;
with 'WebService::Client';
our $VERSION = '1.0600'; # VERSION
use Carp qw(croak);
use HTTP::Request::Common qw(GET POST);
use JSON qw(encode_json);
has '+base_url' => (is => 'ro', default => 'https://api.balancedpayments.com');
has secret => (is => 'ro', required => 1);
has uris => (is => 'ro', lazy => 1, builder => '_build_uris' );
has marketplace => (is => 'ro', lazy => 1, builder => '_build_marketplace');
( run in 0.411 second using v1.01-cache-2.11-cpan-de7293f3b23 )