8000 [Waiting Code Merge] Update reference/configuration/framework.rst for new serializer service by loalf · Pull Request #1829 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Waiting Code Merge] Update reference/configuration/framework.rst for new serializer service #1829

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 6 commits into from
Mar 30, 2013
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update reference/dic_tags.rst
Adding tags to the tag list reference
  • Loading branch information
humandb committed Oct 21, 2012
commit 460406edf272e61a1826279d23d391b64d6f1355
22 changes: 22 additions & 0 deletions reference/dic_tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ the AsseticBundle has several tags that aren't listed here.
+-----------------------------------+---------------------------------------------------------------------------+
| `security.listener.factory`_ | Necessary when creating a custom authentication system |
+-----------------------------------+---------------------------------------------------------------------------+
| `serializer.encoder`_ | Register a new encoder in the Serializer service |
+-----------------------------------+---------------------------------------------------------------------------+
| `serializer.normalizer`_ | Register a new normalizer in the Serializer service |
+-----------------------------------+---------------------------------------------------------------------------+
| `swiftmailer.plugin`_ | Register a custom SwiftMailer Plugin |
+-----------------------------------+---------------------------------------------------------------------------+
| `templating.helper`_ | Make your service available in PHP templates |
Expand Down Expand Up @@ -558,6 +562,24 @@ is used behind the scenes to determine if the user should have access. The

For more information, read the cookbook article: :doc:`/cookbook/security/voters`.

serializer.encoder
------------------

**Purpose**: Register a new encoder in the Serializer service

You have to enable the Serializer service in order to use this tag. The class to
be tagged should extend the :class:`Symfony\\Component\\Serializer\\Encoder\\EncoderInterface`
and :class:`Symfony\\Component\\Serializer\\Encoder\\DecoderInterface`

serializer.normalizer
---------------------

**Purpose**: Register a new normalizer in the Serializer service

You have to enable the Serializer service in order to use this tag. The class to
be tagged should extend the :class:`Symfony\\Component\\Serializer\\Normalizer\\NormalizerInterface`
and :class:`Symfony\\Component\\Serializer\\Normalizer\\DenormalizerInterface`

swiftmailer.plugin
------------------

Expand Down
0