Skip to content

Style on tables and adding buzz factory #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions integrations/symfony-bundle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ You can configure your clients with default options. These default values will b
The bundle has client factory services that you can use to build your client. If you need a very custom made client you could create your own factory service implementing ``Http\HttplugBudle\ClientFactory\ClientFactory``. The built-in services are:

* ``httplug.factory.curl``
* ``httplug.factory.buzz``
* ``httplug.factory.guzzle5``
* ``httplug.factory.guzzle6``
* ``httplug.factory.react``
Expand Down Expand Up @@ -170,21 +171,21 @@ List of Services
+-------------------------------------+-------------------------------------------------------------------------+
| ``httplug.client.[name]`` | There is one service per named client. |
+-------------------------------------+-------------------------------------------------------------------------+
| ``httplug.client`` | If there is a client named "default", this service is an alias to |
| | that client, otherwise it is an alias to the first client configured. |
| ``httplug.client`` | | If there is a client named "default", this service is an alias to |
| | | that client, otherwise it is an alias to the first client configured. |
+-------------------------------------+-------------------------------------------------------------------------+
| ``httplug.plugin.content_length`` | These are plugins that are enabled by default. |
| ``httplug.plugin.decoder`` | These services are private and should only be used to configure |
| ``httplug.plugin.error`` | clients or other services. |
| ``httplug.plugin.logger`` | |
| ``httplug.plugin.redirect`` | |
| ``httplug.plugin.retry`` | |
| ``httplug.plugin.stopwatch`` | |
| | ``httplug.plugin.content_length`` | | These are plugins that are enabled by default. |
| | ``httplug.plugin.decoder`` | | These services are private and should only be used to configure |
| | ``httplug.plugin.error`` | | clients or other services. |
| | ``httplug.plugin.logger`` | |
| | ``httplug.plugin.redirect`` | |
| | ``httplug.plugin.retry`` | |
| | ``httplug.plugin.stopwatch`` | |
+-------------------------------------+-------------------------------------------------------------------------+
| ``httplug.plugin.cache`` | These are plugins that are disabled by default and only get |
| ``httplug.plugin.cookie`` | activated when configured. |
| ``httplug.plugin.history`` | These services are private and should only be used to configure |
| | clients or other services. |
| | ``httplug.plugin.cache`` | | These are plugins that are disabled by default and only get |
| | ``httplug.plugin.cookie`` | | activated when configured. |
| | ``httplug.plugin.history`` | | These services are private and should only be used to configure |
| | | clients or other services. |
+-------------------------------------+-------------------------------------------------------------------------+

\* *These services are always an alias to another service. You can specify your own service or leave the default, which is the same name with `.default` appended.*
Expand Down