File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22
33The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44
5+ ## 2.8.0
6+
7+ ### Added
8+
9+ - Allow our HTTP plugins to show up in the Symfony web profiler page.
10+
511## 2.7.0
612
713### Added
Original file line number Diff line number Diff line change 2323 "php-http/httplug" : " ^1.1" ,
2424 "php-http/discovery" : " ^1.0" ,
2525 "php-http/client-implementation" : " ^1.0" ,
26- "php-http/client-common" : " ^1.3 " ,
26+ "php-http/client-common" : " ^1.6 " ,
2727 "php-http/cache-plugin" : " ^1.4"
2828 },
2929 "require-dev" : {
Original file line number Diff line number Diff line change 66use Http \Client \Common \Plugin ;
77use Http \Client \Common \Plugin \Cache \Generator \HeaderCacheKeyGenerator ;
88use Http \Client \Common \PluginClient ;
9+ use Http \Client \Common \PluginClientFactory ;
910use Http \Client \HttpClient ;
1011use Http \Discovery \HttpClientDiscovery ;
1112use Http \Discovery \MessageFactoryDiscovery ;
@@ -102,7 +103,7 @@ public function getHttpClient()
102103 }
103104
104105 $ this ->pluginClient = new HttpMethodsClient (
105- new PluginClient ($ this ->httpClient , $ plugins ),
106+ ( new PluginClientFactory ())-> createClient ($ this ->httpClient , $ plugins ),
106107 $ this ->requestFactory
107108 );
108109 }
You can’t perform that action at this time.
0 commit comments