@@ -17,10 +17,10 @@ be from a normal form post or from an API.
17
17
Installation
18
18
------------
19
19
20
- You can install the component in many different ways:
20
+ You can install the component in 2 different ways:
21
21
22
22
* Use the official Git repository (https://github.com/symfony/Form);
23
- * Install it via Composer (``symfony/form `` on `Packagist `_).
23
+ * :doc: ` Install it via Composer < /components/using_components >` (``symfony/form `` on `Packagist `_).
24
24
25
25
Configuration
26
26
-------------
@@ -51,7 +51,8 @@ support for very important features:
51
51
messages for submitted data.
52
52
53
53
The Symfony2 Form component relies on other libraries to solve these problems.
54
- Most of the time you will use Twig and the Symfony :doc: `HttpFoundation </components/http_foundation/introduction >`,
54
+ Most of the time you will use Twig and the Symfony
55
+ :doc: `HttpFoundation </components/http_foundation/introduction >`,
55
56
Translation and Validator components, but you can replace any of these with
56
57
a different library of your choice.
57
58
@@ -66,8 +67,9 @@ Request Handling
66
67
~~~~~~~~~~~~~~~~
67
68
68
69
To process form data, you'll need to grab information off of the request (typically
69
- ``$_POST `` data) and pass the array of submitted data to :method: `Symfony\\ Component\\ Form\\ Form::bind `.
70
- The Form component optionally integrates with Symfony's :doc: `HttpFoundation </components/http_foundation/introduction >`
70
+ ``$_POST `` data) and pass the array of submitted data to
71
+ :method: `Symfony\\ Component\\ Form\\ Form::bind `. The Form component optionally
72
+ integrates with Symfony's :doc: `HttpFoundation </components/http_foundation/introduction >`
71
73
component to make this even easier.
72
74
73
75
To integrate the HttpFoundation component, add the
0 commit comments