File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ CHANGE LOG
2
2
==========
3
3
4
4
5
+ ## V3.0.1 (UPCOMING)
6
+
7
+ * Fix HTTP methods client headers and body
8
+
9
+
5
10
## V3.0 (11/07/2020)
6
11
7
12
* Use PSR-7, PSR-17 and PSR-18 only
Original file line number Diff line number Diff line change 12
12
"require" : {
13
13
"php" : " ^7.1.3" ,
14
14
"ext-json" : " *" ,
15
- "php-http/client-common" : " ^2.2 " ,
15
+ "php-http/client-common" : " ^2.3 " ,
16
16
"php-http/cache-plugin" : " ^1.7" ,
17
17
"php-http/discovery" : " ^1.9" ,
18
18
"php-http/httplug" : " ^2.1" ,
41
41
},
42
42
"config" : {
43
43
"preferred-install" : " dist"
44
- }
44
+ },
45
+ "minimum-stability" : " dev" ,
46
+ "prefer-stable" : true
45
47
}
Original file line number Diff line number Diff line change @@ -111,7 +111,8 @@ public function getHttpClient()
111
111
112
112
$ this ->pluginClient = new HttpMethodsClient (
113
113
(new PluginClientFactory ())->createClient ($ this ->httpClient , $ plugins ),
114
- $ this ->requestFactory
114
+ $ this ->requestFactory ,
115
+ $ this ->streamFactory
115
116
);
116
117
}
117
118
You can’t perform that action at this time.
0 commit comments