]> git.rmz.io Git - dotfiles.git/blobdiff - zsh/plugins/composer/composer.plugin.zsh
remove oh-my-zsh
[dotfiles.git] / zsh / plugins / composer / composer.plugin.zsh
diff --git a/zsh/plugins/composer/composer.plugin.zsh b/zsh/plugins/composer/composer.plugin.zsh
deleted file mode 100644 (file)
index c9b762d..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  composer.plugin.zsh
-#   DESCRIPTION:  oh-my-zsh composer plugin file.
-#        AUTHOR:  Daniel Gomes (me@danielcsgomes.com)
-#       VERSION:  1.0.0
-# ------------------------------------------------------------------------------
-
-# Composer basic command completion
-_composer_get_command_list () {
-       composer --no-ansi | sed "1,/Available commands/d" | awk '/^  [a-z]+/ { print $1 }'
-}
-
-_composer () {
-  if [ -f composer.json ]; then
-    compadd `_composer_get_command_list`
-  fi
-}
-
-compdef _composer composer
-
-# Aliases
-alias c='composer'
-alias csu='composer self-update'
-alias cu='composer update'
-alias ci='composer install'
-alias ccp='composer create-project'
-
-# install composer in the current directory
-alias cget='curl -s https://getcomposer.org/installer | php'
\ No newline at end of file