Use –noproxy option in curl when making Http communication with guzzle

Aug 28, 2020 PHP Guzzle

when calling request
'proxy' => ``

OK if you specify in options.

$client = new \GuzzleHttp\Client();
$method ='POST';
$url='http://url.com';
$options = [
     'form_params' => [
         'param1' =>'AAAAA',
         'param2' =>'BBBB',
         'param3' =>'CCCC',
     ],
     'proxy' => ``
];
$response = $client->request($method, $url, $options);