@@ -19,17 +19,16 @@ directory:
19
19
20
20
.. note ::
21
21
22
- `Composer <https://getcomposer.org/> ` is the package manager used by modern
23
- PHP applications and the only recommended way to install Symfony2. To
24
- install Composer on your Linux or Mac system, execute the following commands:
22
+ `Composer `_ is the package manager used by modern PHP applications and the
23
+ only recommended way to install Symfony2. To install Composer on your
24
+ Linux or Mac system, execute the following commands:
25
25
26
26
.. code-block :: bash
27
27
28
28
$ curl -sS https://getcomposer.org/installer | php
29
29
$ sudo mv composer.phar /usr/local/bin/composer
30
30
31
- To install Composer on a Windows system, download the executable installer
32
- from `getcomposer.org/download <http://getcomposer.org/download> `.
31
+ To install Composer on a Windows system, download the `executable installer `_.
33
32
34
33
Beware that the first time you install Symfony2, it may take a few minutes to
35
34
download all its components. At the end of the installation process, the
@@ -281,8 +280,8 @@ template (or ``AcmeDemoBundle:Demo:hello.html.twig`` if you use the logical name
281
280
<h1>Hello {{ name }}!</h1>
282
281
{% endblock %}
283
282
284
- By default, Symfony2 uses `Twig <http://twig.sensiolabs.org/> ` as its template
285
- engine but you can also use traditional PHP templates if you choose. The
283
+ By default, Symfony2 uses `Twig `_ as its template engine but you can also use
284
+ traditional PHP templates if you choose. The
286
285
:doc: `second part of this tutorial</quick_tour/the_view> ` will introduce how
287
286
templates work in Symfony2.
288
287
@@ -375,3 +374,7 @@ hard, was it? There's a lot more to explore, but you should already see how
375
374
Symfony2 makes it really easy to implement web sites better and faster. If you
376
375
are eager to learn more about Symfony2, dive into the next section:
377
376
":doc: `The View<the_view> `".
377
+
378
+ .. _Composer : https://getcomposer.org/
379
+ .. _executable installer : http://getcomposer.org/download
380
+ .. _Twig : http://twig.sensiolabs.org/
0 commit comments