summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/composer/composer.plugin.zsh29
-rw-r--r--plugins/symfony2/symfony2.plugin.zsh6
2 files changed, 34 insertions, 1 deletions
diff --git a/plugins/composer/composer.plugin.zsh b/plugins/composer/composer.plugin.zsh
new file mode 100644
index 000000000..c9b762d07
--- /dev/null
+++ b/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' \ No newline at end of file
diff --git a/plugins/symfony2/symfony2.plugin.zsh b/plugins/symfony2/symfony2.plugin.zsh
index 644266841..223401298 100644
--- a/plugins/symfony2/symfony2.plugin.zsh
+++ b/plugins/symfony2/symfony2.plugin.zsh
@@ -10,4 +10,8 @@ _symfony2 () {
fi
}
-compdef _symfony2 app/console \ No newline at end of file
+compdef _symfony2 app/console
+
+#Alias
+alias sf2='php app/console'
+alias sf2clear='php app/console cache:clear' \ No newline at end of file