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 323dbec commit 963a4a9Copy full SHA for 963a4a9
composer.json
@@ -43,7 +43,8 @@
43
},
44
"conflict": {
45
"php-http/guzzle6-adapter": "<1.1",
46
- "php-http/curl-client": "<2.0"
+ "php-http/curl-client": "<2.0",
47
+ "php-http/socket-client": "<2.0"
48
49
"require-dev": {
50
"guzzlehttp/psr7": "^1.7",
src/ClientFactory/SocketFactory.php
@@ -31,6 +31,6 @@ public function createClient(array $config = [])
31
throw new \LogicException('To use the Socket client you need to install the "php-http/socket-client" package.');
32
}
33
34
- return new Client($this->messageFactory, $config);
+ return new Client($config);
35
36
0 commit comments