diff options
author | Raphael Stolt <raphael.stolt@gmail.com> | 2017-04-25 19:52:55 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-12-29 10:55:45 +0100 |
commit | d384ccf31dca8b0a768c463087f156b7302c77c5 (patch) | |
tree | 272c9125f9341a9e8efde40d70143c0296da3cfd /plugins/composer/README.md | |
parent | cbd8481fe37dde252ee817a8157ed72b7bcad655 (diff) | |
download | zsh-d384ccf31dca8b0a768c463087f156b7302c77c5.tar.gz zsh-d384ccf31dca8b0a768c463087f156b7302c77c5.tar.bz2 zsh-d384ccf31dca8b0a768c463087f156b7302c77c5.zip |
feat(composer): add `cuh` alias for updating global packages (#6048)
Closes #6048
Diffstat (limited to 'plugins/composer/README.md')
-rw-r--r-- | plugins/composer/README.md | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/plugins/composer/README.md b/plugins/composer/README.md index 8c79c4109..ad6ed24bc 100644 --- a/plugins/composer/README.md +++ b/plugins/composer/README.md @@ -14,21 +14,22 @@ Original author: Daniel Gomes <me@danielcsgomes.com> ## Aliases -| Alias | Command | Description | -| ------ | ---------------------------- | --------------------------------------------------------------------------------------- | -| `c` | `composer` | Starts composer | -| `ccp` | `composer create-project` | Create new project from an existing package | -| `cdo` | `composer dump-autoload -o` | Converts PSR-0/4 autoloading to classmap for a faster autoloader (good for production) | -| `cdu` | `composer dump-autoload` | Updates the autoloader | -| `cget` | `curl -s <installer> \| php` | Installs composer in the current directory | -| `cgr` | `composer global require` | Allows require command to run on COMPOSER_HOME directory | -| `cgrm` | `composer global remove` | Allows remove command to run on COMPOSER_HOME directory | -| `cgu` | `composer global update` | Allows update command to run on COMPOSER_HOME directory | -| `ci` | `composer install` | Resolves and installs dependencies from `composer.json` | -| `co` | `composer outdated` | Shows a list of installed packages with available updates | -| `cod` | `composer outdated --direct` | Shows a list of installed packages with available updates which are direct dependencies | -| `cr` | `composer require` | Adds new packages to `composer.json` | -| `crm` | `composer remove` | Removes packages from `composer.json` | -| `cs` | `composer show` | Lists available packages, with optional filtering | -| `csu` | `composer self-update` | Updates composer to the latest version | -| `cu` | `composer update` | Updates composer dependencies and `composer.lock` file | +| Alias | Command | Description | +| ------ | ---------------------------------- | --------------------------------------------------------------------------------------- | +| `c` | `composer` | Starts composer | +| `ccp` | `composer create-project` | Create new project from an existing package | +| `cdo` | `composer dump-autoload -o` | Converts PSR-0/4 autoloading to classmap for a faster autoloader (good for production) | +| `cdu` | `composer dump-autoload` | Updates the autoloader | +| `cget` | `curl -s <installer> \| php` | Installs composer in the current directory | +| `cgr` | `composer global require` | Allows require command to run on COMPOSER_HOME directory | +| `cgrm` | `composer global remove` | Allows remove command to run on COMPOSER_HOME directory | +| `cgu` | `composer global update` | Allows update command to run on COMPOSER_HOME directory | +| `ci` | `composer install` | Resolves and installs dependencies from `composer.json` | +| `co` | `composer outdated` | Shows a list of installed packages with available updates | +| `cod` | `composer outdated --direct` | Shows a list of installed packages with available updates which are direct dependencies | +| `cr` | `composer require` | Adds new packages to `composer.json` | +| `crm` | `composer remove` | Removes packages from `composer.json` | +| `cs` | `composer show` | Lists available packages, with optional filtering | +| `csu` | `composer self-update` | Updates composer to the latest version | +| `cu` | `composer update` | Updates composer dependencies and `composer.lock` file | +| `cuh` | `composer update -d <config-home>` | Updates globally installed packages | |