summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/composer/README.md
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/composer/README.md
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/composer/README.md')
-rw-r--r--zsh/oh-my-zsh/plugins/composer/README.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/zsh/oh-my-zsh/plugins/composer/README.md b/zsh/oh-my-zsh/plugins/composer/README.md
deleted file mode 100644
index ad6ed24..0000000
--- a/zsh/oh-my-zsh/plugins/composer/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# composer
-
-This plugin provides completion for [composer](https://getcomposer.org/), as well as aliases
-for frequent composer commands. It also adds Composer's global binaries to the PATH, using
-Composer if available.
-
-To use it add `composer` to the plugins array in your zshrc file.
-
-```zsh
-plugins=(... composer)
-```
-
-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 |
-| `cuh` | `composer update -d <config-home>` | Updates globally installed packages |