4
4
How to install 3rd party bundles
5
5
================================
6
6
7
- Most bundles provide their own installation instructions. However the
7
+ Most bundles provide their own installation instructions. However, the
8
8
basic steps for installing a bundle are the same.
9
9
10
10
Add composer dependencies
11
11
-------------------------
12
12
13
- Starting from Symfony2.1 dependencies are managed with Composer. It's
14
- a good idea to learn some basics of Composer in
15
- `their documentation `_.
13
+ Starting from Symfony 2.1 dependencies are managed with Composer. It's
14
+ a good idea to learn some basics of Composer in `their documentation `_.
16
15
17
16
Before you can use composer to install a bundle, you should look for a
18
17
`Packagist `_ package of that bundle. For example, for the
19
18
`FOSUserBundle `_ you should look for a
20
19
``friendsofsymfony/user-bundle `` package and it does exists:
21
- https://packagist.org/packages/friendsofsymfony/user-bundle.
20
+ https://packagist.org/packages/friendsofsymfony/user-bundle .
22
21
23
22
.. note ::
24
23
@@ -35,7 +34,7 @@ particular version of Symfony, this should be in the ``README`` file (in
35
34
the Package, which you can view on Github or KnpBundles). If it isn't
36
35
in the ``README ``, you can use the version you want. In the case of the
37
36
FOSUserBundle, the ``README `` file has a caution that version 1.2.0 must be
38
- used for Symfony2 .0 and 1.3 for Symfony2 .1+. Let's use the development
37
+ used for Symfony 2 .0 and 1.3 for Symfony 2 .1+. Let's use the development
39
38
version for this example.
40
39
41
40
Now we can add the bundle to our ``composer.json `` file and update the
0 commit comments