1
0
Fork 0

Merge pull request #5246 from bamarni/patch-8

doc - some rephrasing for global cli install
pull/5267/head
Jordi Boggiano 2016-04-28 19:53:21 +01:00
commit 84ecabed3f
1 changed files with 11 additions and 7 deletions

View File

@ -234,17 +234,21 @@ directory.
This is merely a helper to manage a project stored in a central location that This is merely a helper to manage a project stored in a central location that
can hold CLI tools or Composer plugins that you want to have available everywhere. can hold CLI tools or Composer plugins that you want to have available everywhere.
This can be used to install CLI utilities globally and if you add This can be used to install CLI utilities globally. Here is an example:
`$COMPOSER_HOME/vendor/bin` to your `$PATH` environment variable. Here is an
example:
```sh ```sh
php composer.phar global require fabpot/php-cs-fixer:dev-master php composer.phar global require fabpot/php-cs-fixer
``` ```
Now the `php-cs-fixer` binary is available globally (assuming you adjusted Now the `php-cs-fixer` binary is available globally. Just make sure your global
your PATH). If you wish to update the binary later on you can just run a [vendor binaries](articles/vendor-binaries.md) directory is in your `$PATH`
global update: environment variable, you can get its location with the following command :
```sh
php composer.phar global config bin-dir --absolute
```
If you wish to update the binary later on you can just run a global update:
```sh ```sh
php composer.phar global update php composer.phar global update