@@ -85,13 +85,13 @@ code::
8585 the server.
8686
8787 For example, consider that your development machines ship ICU 4.8 and the server
88- ICU 4.2. When you run ``php composer.phar update `` on the development machine, version
88+ ICU 4.2. When you run ``composer update `` on the development machine, version
8989 1.2.* of the Icu component will be installed. But after deploying the
90- application, ``php composer.phar install `` will fail with the following error:
90+ application, ``composer install `` will fail with the following error:
9191
9292 .. code-block :: bash
9393
94- $ php composer.phar install
94+ $ composer install
9595 Loading composer repositories with package information
9696 Installing dependencies from lock file
9797 Your requirements could not be resolved to an installable set of packages.
@@ -104,8 +104,8 @@ code::
104104 The error tells you that the requested version of the Icu component, version
105105 1.2, is not compatible with PHP's ICU version 4.2.
106106
107- One solution to this problem is to run ``php composer.phar update `` instead of
108- ``php composer.phar install ``. It is highly recommended **not ** to do this. The
107+ One solution to this problem is to run ``composer update `` instead of
108+ ``composer install ``. It is highly recommended **not ** to do this. The
109109 ``update `` command will install the latest versions of each Composer dependency
110110 to your production server and potentially break the application.
111111
@@ -130,7 +130,7 @@ code::
130130 * "1.0.*" if the server does not have the intl extension installed;
131131 * "1.1.*" if the server is compiled with ICU 4.2 or lower.
132132
133- Finally, run ``php composer.phar update symfony/icu `` on your development machine, test
133+ Finally, run ``composer update symfony/icu `` on your development machine, test
134134 extensively and deploy again. The installation of the dependencies will now
135135 succeed.
136136
0 commit comments