Skip to content

Commit e566ade

Browse files
committed
Fix second wave.
1 parent 8c9df7b commit e566ade

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

cookbook/bundles/installation.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
How to install 3rd party bundles
55
================================
66

7-
Most bundles provide a documentation of installation. However, most
8-
steps are common for any bundle.
7+
Most bundles provide their own installation instructions. However the
8+
basic steps for installing a bundle are the same.
99

1010
Add composer dependencies
1111
-------------------------
@@ -29,14 +29,14 @@ https://packagist.org/packages/friendsofsymfony/user-bundle.
2929
has a Packagist package it shows a link to the package. It's a
3030
really usefull site to begin searching for bundles.
3131

32-
Now you have the package name, you should determine the version you
32+
Now that you have the package name, you should determine the version you
3333
want to use. Usually different versions of a bundle correspond to a
3434
particular version of Symfony, this should be in the ``README`` file (in
3535
the Package, which you can view on Github or KnpBundles). If it isn't
3636
in the ``README``, you can use the version you want. In the case of the
3737
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 development
39-
version for this exmaple.
38+
used for Symfony2.0 and 1.3 for Symfony2.1+. Let's use the development
39+
version for this example.
4040

4141
Now we can add the bundle to our ``composer.json`` file and update the
4242
dependencies. You can do this manually:
@@ -75,7 +75,7 @@ Enable the bundle
7575
-----------------
7676

7777
Now the bundle is installed into our Symfony project (in
78-
``vendor/friendsofsymfony/``) and the autoloader recognises this
78+
``vendor/friendsofsymfony/``) and the autoloader recognizes this
7979
bundle. The only thing we need to do now is registering the bundle in
8080
the ``AppKernel``::
8181

@@ -101,7 +101,7 @@ Configure the bundle
101101
--------------------
102102

103103
Usually bundles require some configuration to be added to app's
104-
``app/config/config.yml`` file. Bundle's documentation will likely
104+
``app/config/config.yml`` file. The bundle's documentation will likely
105105
describe that configuration. But you can also get a reference of the
106106
bundle's config via ``config:dump-reference`` command.
107107

0 commit comments

Comments
 (0)