Skip to content

Commit

Permalink
minor #6211 Remove 2.3.* from composer snippets in the form component…
Browse files Browse the repository at this point in the history
… doc (Nicofuma)

This PR was submitted for the master branch but it was merged into the 3.0 branch instead (closes #6211).

Discussion
----------

Remove 2.3.* from composer snippets in the form component doc

Commits
-------

97ef850 Remove 2.3.* from composer snippets in the form component doc
  • Loading branch information
xabbuh committed Feb 5, 2016
2 parents 03c6605 + 97ef850 commit 06c76aa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions components/form/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ component offers a rich integration.

To use the integration, you'll need the ``TwigBridge``, which provides integration
between Twig and several Symfony components. If you're using Composer, you
could install the latest 2.3 version by adding the following ``require``
could install the latest 3.x version by adding the following ``require``
line to your ``composer.json`` file:

.. code-block:: json
{
"require": {
"symfony/twig-bridge": "2.3.*"
"symfony/twig-bridge": "~3.0"
}
}
Expand Down Expand Up @@ -243,15 +243,15 @@ via your own Twig extension.

To use the built-in integration, be sure that your project has Symfony's
Translation and :doc:`Config </components/config/introduction>` components
installed. If you're using Composer, you could get the latest 2.3 version
installed. If you're using Composer, you could get the latest 3.x version
of each of these by adding the following to your ``composer.json`` file:

.. code-block:: json
{
"require": {
"symfony/translation": "2.3.*",
"symfony/config": "2.3.*"
"symfony/translation": "~3.0",
"symfony/config": "~3.0"
}
}
Expand Down Expand Up @@ -295,13 +295,13 @@ array or object) and pass it through your own validation system.

To use the integration with Symfony's Validator component, first make sure
it's installed in your application. If you're using Composer and want to
install the latest 2.3 version, add this to your ``composer.json``:
install the latest 3.x version, add this to your ``composer.json``:

.. code-block:: json
{
"require": {
"symfony/validator": "2.3.*"
"symfony/validator": "~3.0"
}
}
Expand Down

0 comments on commit 06c76aa

Please sign in to comment.