@@ -6,7 +6,7 @@ How to Install and Use the Symfony2 Components
66==============================================
77
88If you're starting a new project (or already have a project) that will use
9- one or more components, the easiest way to integrate everything is with Composer.
9+ one or more components, the easiest way to integrate everything is with` Composer `_ .
1010Composer is smart enough to download the component(s) that you need and take
1111care of autoloading so that you can begin using the libraries immediately.
1212
@@ -33,13 +33,15 @@ may also need to adjust the version (e.g. ``2.1.1`` or ``2.2.*``).
3333
3434You can research the component names and versions at `packagist.org `_.
3535
36- **3. ** Download the vendor libraries and generate the ``vendor/autoload.php `` file:
36+ **3. ** `Install composer `_ if you don't already have it present on your system:
37+
38+ **4. ** Download the vendor libraries and generate the ``vendor/autoload.php `` file:
3739
3840..code-block ::bash
3941
4042 $ php composer.phar install
4143
42- **4 . ** Write your code:
44+ **5 . ** Write your code:
4345
4446Once Composer has downloaded the component(s), all you need to do is include
4547the ``vendor/autoload.php `` file that was generated by Composer. This file
@@ -93,4 +95,6 @@ documentation to find out more about how to use it.
9395
9496And have fun!
9597
98+ .. _Composer :http://getcomposer.org
99+ .. _Install composer :http://getcomposer.org/download/
96100.. _packagist.org :https://packagist.org/