Skip to content
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

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

Closed
wants to merge 1 commit into from
Closed
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
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