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 cbe5a03 + ac5a58a commit 6b1d9adCopy full SHA for 6b1d9ad
XML/RPC2/Util/HTTPRequest.php
@@ -42,7 +42,9 @@
42
// dependencies {{{
43
require_once 'XML/RPC2/Exception.php';
44
require_once 'XML/RPC2/Client.php';
45
-require_once 'HTTP/Request2.php';
+if (!class_exists('HTTP_Request2', true)) {
46
+ require_once 'HTTP/Request2.php';
47
+}
48
// }}}
49
50
/**
composer.json
@@ -28,7 +28,7 @@
28
"require": {
29
"php": ">=5.2.0",
30
"pear/pear_exception": "^1.0.0",
31
- "pear/http_request2": "^2.3.0"
+ "pear/http_request2": "^2.4.0"
32
},
33
"require-dev": {
34
"phpunit/phpunit": "*"
0 commit comments