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.
1 parent 4a8c4ee commit 98a9374Copy full SHA for 98a9374
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