Skip to content

Commit

Permalink
guzzle 5.*
Browse files Browse the repository at this point in the history
  • Loading branch information
sudiptpa committed Jan 2, 2017
1 parent 8a5eea0 commit e14138f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**PayPal Instant Payment Notification Listener driver for PHP**

[![StyleCI](https://styleci.io/repos/77810461/shield?branch=master)](https://styleci.io/repos/77810461)
[![StyleCI](https://styleci.io/repos/77828329/shield?branch=master)](https://styleci.io/repos/77828329)
[![Build Status](https://travis-ci.org/sudiptpa/paypal-ipn.svg?branch=master)](https://travis-ci.org/sudiptpa/paypal-ipn)
[![Latest Stable Version](https://poser.pugx.org/sudiptpa/paypal-ipn/v/stable)](https://packagist.org/packages/sudiptpa/paypal-ipn)
[![Total Downloads](https://poser.pugx.org/sudiptpa/paypal-ipn/downloads)](https://packagist.org/packages/sudiptpa/paypal-ipn)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"require":{
"php": ">=5.5",
"guzzlehttp/guzzle":"6.*",
"guzzlehttp/guzzle":"5.*",
"symfony/event-dispatcher":"~2.0|~3.0"
},
"require-dev":{
Expand Down
2 changes: 1 addition & 1 deletion src/Service/HttpService.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function verifyIpnMessage(IPNMessage $message)
try {
$response = $this->httpClient->post(
$this->serviceEndpoint,
['form_params' => $requestBody]
['body' => $requestBody]
);
} catch (Exception $e) {
throw new ServiceException($e->getMessage());
Expand Down

0 comments on commit e14138f

Please sign in to comment.