Skip to content

Commit 9ffa107

Browse files
committed
fix Composer notation
1 parent e6ff81e commit 9ffa107

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

book/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Symfony itself - into the ``vendor/`` directory.
180180
.. tip::
181181

182182
When running ``php composer.phar install`` or ``php composer.phar update``,
183-
composer will execute post install/update commands to clear the cache
183+
Composer will execute post install/update commands to clear the cache
184184
and install assets. By default, the assets will be copied into your ``web``
185185
directory.
186186

cookbook/bundles/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add Composer Dependencies
1313
Starting from Symfony 2.1, dependencies are managed with Composer. It's
1414
a good idea to learn some basics of Composer in `their documentation`_.
1515

16-
Before you can use composer to install a bundle, you should look for a
16+
Before you can use Composer to install a bundle, you should look for a
1717
`Packagist`_ package of that bundle. For example, if you search for the popular
1818
`FOSUserBundle`_ you will find a packaged called `friendsofsymfony/user-bundle`_.
1919

cookbook/form/unit_testing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ It is used to test the core types and you can use it to test your types too.
2323
.. note::
2424

2525
Depending on the way you installed your Symfony or Symfony Form Component
26-
the tests may not be downloaded. Use the --prefer-source option with
27-
composer if this is the case.
26+
the tests may not be downloaded. Use the ``--prefer-source`` option with
27+
Composer if this is the case.
2828

2929
The Basics
3030
----------

cookbook/workflow/_vendor_deps.rst.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Managing Vendor Libraries with composer.json
2-
--------------------------------------------
1+
Managing Vendor Libraries with ``composer.json``
2+
------------------------------------------------
33

44
How does it work?
55
~~~~~~~~~~~~~~~~~

cookbook/workflow/new_project_git.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ git repository:
6969
$ git commit -m "Initial commit"
7070
7171
8. Finally, download all of the third-party vendor libraries by
72-
executing composer. For details, see :ref:`installation-updating-vendors`.
72+
executing Composer. For details, see :ref:`installation-updating-vendors`.
7373

7474
At this point, you have a fully-functional Symfony2 project that's correctly
7575
committed to Git. You can immediately begin development, committing the new
@@ -95,7 +95,7 @@ Instead of using the ``composer.json`` system for managing your vendor
9595
libraries, you may instead choose to use native `git submodules`_. There
9696
is nothing wrong with this approach, though the ``composer.json`` system
9797
is the official way to solve this problem and probably much easier to
98-
deal with. Unlike Git submodules, ``Composer`` is smart enough to calculate
98+
deal with. Unlike Git submodules, Composer is smart enough to calculate
9999
which libraries depend on which other libraries.
100100

101101
Storing your Project on a Remote Server

cookbook/workflow/new_project_svn.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ To get started, you'll need to download Symfony2 and get the basic Subversion se
101101
developing.
102102

103103
8. Finally, download all of the third-party vendor libraries by
104-
executing composer. For details, see :ref:`installation-updating-vendors`.
104+
executing Composer. For details, see :ref:`installation-updating-vendors`.
105105

106106
.. tip::
107107

0 commit comments

Comments
 (0)