We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b48ab6 commit 64f6b3cCopy full SHA for 64f6b3c
composer.json
@@ -26,7 +26,7 @@
26
"ext-json": "*",
27
"ext-xml": "*",
28
"php-http/cache-plugin": "^1.7",
29
- "php-http/client-common": "^2.2",
+ "php-http/client-common": "^2.3",
30
"php-http/discovery": "^1.9",
31
"php-http/httplug": "^2.1",
32
"php-http/multipart-stream-builder": "^1.1",
@@ -55,5 +55,7 @@
55
},
56
"config": {
57
"preferred-install": "dist"
58
- }
+ },
59
+ "minimum-stability": "dev",
60
+ "prefer-stable": true
61
}
src/HttpClient/Builder.php
@@ -114,7 +114,8 @@ public function getHttpClient()
114
115
$this->pluginClient = new HttpMethodsClient(
116
(new PluginClientFactory())->createClient($this->httpClient, $plugins),
117
- $this->requestFactory
+ $this->requestFactory,
118
+ $this->streamFactory
119
);
120
121
0 commit comments