We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3198f4c + 98a9374 commit aa4413cCopy full SHA for aa4413c
src/Configuration/DotEnvConfiguration.php
@@ -41,6 +41,10 @@ public function __construct($path = '.')
41
$this->curlOptSslVerifyPeer = $this->env('CURLOPT_SSL_VERIFYPEER', false);
42
$this->curlOptUserAgent = $this->env('CURLOPT_USERAGENT', $this->getDefaultUserAgentString());
43
$this->curlOptVerbose = $this->env('CURLOPT_VERBOSE', false);
44
+ $this->proxyServer = $this->env('PROXY_SERVER');
45
+ $this->proxyPort = $this->env('PROXY_PORT');
46
+ $this->proxyUser = $this->env('PROXY_USER');
47
+ $this->proxyPassword = $this->env('PROXY_PASSWORD');
48
}
49
50
/**
0 commit comments