Skip to content

Commit 3011e85

Browse files
authored
Merge pull request #111 from thinkshout/guzzle-updates-221
Co-Authored by: @calebtr-metro
2 parents bc10b7d + c0ec2d4 commit 3011e85

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "thinkshout/mailchimp-api-php",
3+
"version": "3.0.0",
34
"type": "library",
45
"description": "PHP library for v3 of the MailChimp API",
56
"keywords": ["mailchimp", "mail"],
67
"homepage": "https://github.com/thinkshout/mailchimp-api-php",
78
"license": "GPL-2.0-or-later",
89
"require": {
910
"php": ">=5.4.0",
10-
"guzzlehttp/guzzle": "^6.2.1|^7.0.0"
11+
"guzzlehttp/guzzle": "^6.5.8|^7.4.5"
1112
},
1213
"require-dev": {
13-
"phpunit/phpunit": "^6.2.2"
14+
"phpunit/phpunit": "^6.2.2|^7.0|^8.0|^9.0"
1415
},
1516
"autoload": {
1617
"psr-4": {

tests/src/MailchimpTestHttpResponse.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22

33
namespace Mailchimp\Tests;
44

5+
use GuzzleHttp\Psr7\Response;
6+
57
/**
68
* Test HTTP Response.
79
*
810
* @package Mailchimp\Tests
911
*/
10-
class MailchimpTestHttpResponse extends \GuzzleHttp\Psr7\Response {
11-
12-
public function getBody() {
13-
return '{}';
14-
}
15-
16-
}
12+
class MailchimpTestHttpResponse extends Response {}

0 commit comments

Comments
 (0)