From 6b136132f842145002e1ccb19907ce7ce53fb7f4 Mon Sep 17 00:00:00 2001 From: Jeroen van Leusden Date: Fri, 12 Apr 2019 11:45:53 +0200 Subject: [PATCH] Version 1.0.0 --- composer.json | 3 ++- src/Client.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index e030831..a241845 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,7 @@ { "name": "bol-com/retailer-api", "type": "library", + "version": "1.0.0", "authors": [ { "name": "Reach Digital", @@ -9,7 +10,7 @@ } ], "description": "API Package to talk to the bol.com API.", - "license": "Apache", + "license": "Apache-2.0", "require": { "guzzlehttp/guzzle": "~6.0", "kamermans/guzzle-oauth2-subscriber": "^1.0", diff --git a/src/Client.php b/src/Client.php index f57cc75..6916a09 100644 --- a/src/Client.php +++ b/src/Client.php @@ -57,7 +57,7 @@ protected function handlerStack(ClientConfigInterface $clientConfig, LoggerInter $stack->push(new RequestExceptionMiddleware(), 'http_errors'); $stack->push(GuzzleRetryMiddleware::factory()); - $logger && $stack->push(Middleware::log($logger, new \GuzzleHttp\MessageFormatter(\GuzzleHttp\MessageFormatter::DEBUG))); + $logger && $stack->push(Middleware::log($logger, new \GuzzleHttp\MessageFormatter())); $stack->push(new JsonResponseMiddleware()); return $stack;