Skip to content

Commit

Permalink
Fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Oderwald committed Mar 17, 2016
1 parent d0ff0e4 commit 275b5ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Http/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ public function __construct($apiKey)

parent::__construct([
'base_uri' => 'https://api.shipcloud.io/v1/',
'auth' => [$apiKey, null]
'auth' => [$apiKey, null],
'headers' => [
'Content-Type' => 'application/json'
]
]);
}

Expand Down

0 comments on commit 275b5ca

Please sign in to comment.