You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTTPlug works with any HTTP client implementation that provides a HTTPlug adapter. The command above installs the Guzzle client. For alternatives, see the [HTTPlug client list](http://docs.php-http.org/en/latest/clients.html).
21
20
22
-
Enable the bundle in your kernel:
23
-
24
-
```php
25
-
<?php
26
-
// app/AppKernel.php
27
-
28
-
public function registerBundles()
29
-
{
30
-
$bundles = [
31
-
// ...
32
-
new Http\HttplugBundle\HttplugBundle(),
33
-
];
34
-
}
35
-
```
21
+
See the [bundle documentation](https://php-http.readthedocs.io/en/latest/integrations/symfony-bundle.html) for installation without Flex and for further options. There is also a [HTTPlug client list](http://docs.php-http.org/en/latest/clients.html) if you want to use a specific HTTP client.
0 commit comments