Request options
$client = new Svgta\OidcClient\init();
//...
$client->request->setHttpProxy('http://proxyUri:proxyPort');
$client->request->setHttpsProxy('http://proxyUri:proxyPort');
//the proxy is a string
$client->request->setNoProxy(['.myDomain', '.myOtherDomain']);
// the list is an array of domains that don't use proxy if http proxy and https proxy are set$client->request->verifyTls(false);$client->request->setCert('pathToFile');
//OR
$client->request->setCert(['pathToFile', 'password']);$client->request->addOtherParam('debug', true);Last updated