File tree 3 files changed +9
-2
lines changed 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
4
4
5
+ ## 2.8.0
6
+
7
+ ### Added
8
+
9
+ - Allow our HTTP plugins to show up in the Symfony web profiler page.
10
+
5
11
## 2.7.0
6
12
7
13
### Added
Original file line number Diff line number Diff line change 23
23
"php-http/httplug" : " ^1.1" ,
24
24
"php-http/discovery" : " ^1.0" ,
25
25
"php-http/client-implementation" : " ^1.0" ,
26
- "php-http/client-common" : " ^1.3 " ,
26
+ "php-http/client-common" : " ^1.6 " ,
27
27
"php-http/cache-plugin" : " ^1.4"
28
28
},
29
29
"require-dev" : {
Original file line number Diff line number Diff line change 6
6
use Http \Client \Common \Plugin ;
7
7
use Http \Client \Common \Plugin \Cache \Generator \HeaderCacheKeyGenerator ;
8
8
use Http \Client \Common \PluginClient ;
9
+ use Http \Client \Common \PluginClientFactory ;
9
10
use Http \Client \HttpClient ;
10
11
use Http \Discovery \HttpClientDiscovery ;
11
12
use Http \Discovery \MessageFactoryDiscovery ;
@@ -102,7 +103,7 @@ public function getHttpClient()
102
103
}
103
104
104
105
$ this ->pluginClient = new HttpMethodsClient (
105
- new PluginClient ($ this ->httpClient , $ plugins ),
106
+ ( new PluginClientFactory ())-> createClient ($ this ->httpClient , $ plugins ),
106
107
$ this ->requestFactory
107
108
);
108
109
}
You can’t perform that action at this time.
0 commit comments