浏览代码

Add CakePHP3 plugin

Jad Bitar 9 年之前
父节点
当前提交
6504a2d386
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      plugins/cakephp3/cakephp3.plugin.zsh

+ 19 - 0
plugins/cakephp3/cakephp3.plugin.zsh

@@ -0,0 +1,19 @@
+# CakePHP 3 basic command completion
+_cakephp3_get_command_list () {
+	cakephp3commands=($(bin/cake completion commands));printf "%s\n" "${cakephp3commands[@]}"
+}
+
+_cakephp3 () {
+  if [ -f bin/cake ]; then
+    compadd `_cakephp3_get_command_list`
+  fi
+}
+
+compdef _cakephp3 bin/cake
+compdef _cakephp3 cake
+
+#Alias
+alias c3='bin/cake'
+
+alias c3cache='bin/cake orm_cache clear'
+alias c3migrate='bin/cake migrations migrate'