Merge pull request #1344 from danielcsgomes/master

Added Composer Plugin and Symfony2 alias
This commit is contained in:
Robby Russell 2012-10-09 06:42:27 -07:00
commit c2ae9e09ca
2 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,29 @@
# ------------------------------------------------------------------------------
# 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'

View File

@ -10,4 +10,8 @@ _symfony2 () {
fi
}
compdef _symfony2 app/console
compdef _symfony2 app/console
#Alias
alias sf2='php app/console'
alias sf2clear='php app/console cache:clear'