Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Composer Plugin and Symfony2 alias #1344

Merged
merged 3 commits into from Oct 9, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions plugins/composer/composer.plugin.zsh
@@ -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'
6 changes: 5 additions & 1 deletion plugins/symfony2/symfony2.plugin.zsh
Expand Up @@ -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'