...
You will use the command-line according to your installation.
| Locally | Globally | ||
|---|---|---|---|
Command-line | $> php composer.phar | $> composer | |
Advantages | No rights needed No configuration needed (out of the box) | Every user on the server can access to composer CLI You have your Composer outside your web RootDirectory |
Installation
Locally
|
Globally
| Code Block | ||||
|---|---|---|---|---|
| ||||
curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer |
| Info |
|---|
| See the official Composer documentation for further documentation. |
...