in this code :
$customer = \GuzzleHttp\Client(['base_uri'=>'https://example.com']);
$response = $customer->request('GET', '/', ['query'=> ['name'=>'Dolce| Gabana']]);
All is correct except the parameter of the query is urlencoded
I want exactly this request uri
How to resolve this problem ?