How to ignore invalid SSL certificate errors in Guzzle 5

You should use

$this->client = new GuzzleClient(['defaults' => [
    'verify' => false
]]);

i.e. a Boolean false, not the string ‘false’