Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/Handle unndefined Content-length in the header #44

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ sandbox_config.json
test_diffs
build_log
Dockerfile.5*
/WebService-Braintree-*
/.build
/_build_params
/Build
/Build.bat
!Build/
!META.json
!LICENSE
12 changes: 12 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# =========================================================================
# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA.
# DO NOT EDIT DIRECTLY.
# =========================================================================

use 5.008_001;
use strict;

use Module::Build::Tiny 0.035;

Build_PL();

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Minilla cannot detect license terms.
1 change: 0 additions & 1 deletion MANIFEST.SKIP

This file was deleted.

125 changes: 125 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
{
"abstract" : "A Client Library for wrapping the Braintree Payment Services Gateway API",
"author" : [
"Kieren Diment <[email protected]>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.1.21, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
},
"name" : "WebService-Braintree",
"no_index" : {
"directory" : [
"t",
"xt",
"inc",
"share",
"eg",
"examples",
"author",
"builder"
]
},
"prereqs" : {
"build" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build::Tiny" : "0.035"
}
},
"develop" : {
"requires" : {
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion::Fast" : "0.04",
"Test::PAUSE::Permissions" : "0.07",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
},
"runtime" : {
"requires" : {
"Class::Load::XS" : "0",
"DDP" : "0",
"Data::GUID" : "0",
"DateTime" : "0",
"DateTime::Format::Atom" : "0",
"DateTime::Format::RFC3339" : "0",
"DateTime::Format::Strptime" : "0",
"Digest" : "0",
"Digest::HMAC_SHA1" : "0",
"Digest::SHA" : "0",
"Digest::SHA1" : "0",
"Digest::SHA256" : "0",
"HTTP::Request" : "0",
"Hash::Inflator" : "0",
"JSON" : "0",
"LWP" : "6.02",
"LWP::Protocol::https" : "0",
"MIME::Base64" : "0",
"Module::Install::TestTarget" : "0",
"Moo" : "0",
"MooX::Aliases" : "0",
"Mozilla::CA" : "0",
"Scalar::Util" : "0",
"Try::Tiny" : "0",
"Type::Tiny" : "0",
"URI" : "0",
"URI::Query" : "0",
"XML::LibXML" : "0",
"XML::Simple" : "0",
"local::lib" : "0",
"perl" : "5.010001",
"strictures" : "0"
}
},
"test" : {
"requires" : {
"Data::Printer" : "0",
"String::CamelCase" : "0",
"Test::Deep" : "0",
"Test::More" : "0.98",
"Test::Pod" : "0",
"Test::Warn" : "0"
}
}
},
"release_status" : "unstable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/Peatix/braintree_perl/issues"
},
"homepage" : "https://github.com/Peatix/braintree_perl",
"repository" : {
"type" : "git",
"url" : "https://github.com/Peatix/braintree_perl.git",
"web" : "https://github.com/Peatix/braintree_perl"
}
},
"version" : "1.721",
"x_contributors" : [
"Akira Sawada <[email protected]>",
"Ayaka Nonaka <[email protected]>",
"Braintree <[email protected]>",
"Braintree <[email protected]>",
"Braintree <[email protected]>",
"Carl Saturnino <[email protected]>",
"John Downey <[email protected]>",
"Kieren Diment <[email protected]>",
"Mohammad S Anwar <[email protected]>",
"Mohammad S Anwar <[email protected]>",
"Rob Kinyon <[email protected]>",
"Tom Heady <[email protected]>",
"tonyo <[email protected]>"
],
"x_serialization_backend" : "JSON::PP version 4.07",
"x_static_install" : 1
}
Loading