PHP convertit la réponse à Guzzer à JSON

$response = GuzzleHttp\get('http://httpbin.org/get');
if ($response->getBody()) {
    echo $response->getBody();
    // JSON string: { ... }
}
Glorious Grivet