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 7928abd commit 0d669dcCopy full SHA for 0d669dc
composer.json
@@ -18,7 +18,10 @@
18
}
19
],
20
"require": {
21
- "php": ">=5.3.0"
+ "php": ">=5.3.0",
22
+ "ext-dom": "*",
23
+ "ext-curl": "*",
24
+ "ext-json": "*"
25
},
26
"require-dev": {
27
"symfony/http-foundation": "~2.1",
src/OAuth/Common/Http/Client/CurlClient.php
@@ -118,10 +118,6 @@ public function retrieveResponse(
118
curl_setopt($ch, $key, $value);
119
120
121
- if ($this->forceSSL3) {
122
- curl_setopt($ch, CURLOPT_SSLVERSION, 3);
123
- }
124
-
125
$response = curl_exec($ch);
126
$responseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
127
0 commit comments