浏览代码

laravel: add README (#7222)

Sergey Lysenko 5 年之前
父节点
当前提交
a6d40b8f8b
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      plugins/laravel/README.md

+ 19 - 0
plugins/laravel/README.md

@@ -0,0 +1,19 @@
+# Laravel plugin
+
+This plugin adds aliases and autocompletion for Laravel [Artisan](https://laravel.com/docs/artisan) and [Bob](http://daylerees.github.io/laravel-bob/) command-line interfaces.
+
+**NOTE:** completion might not work for recent Laravel versions since it hasn't been updated since 2012.
+In that case, check out plugins `laravel4` and `laravel5`.
+
+To use it, add `laravel` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... laravel)
+```
+
+## Aliases
+
+| Alias     | Command                  | Description          |
+|-----------|--------------------------|----------------------|
+| artisan   | `php artisan`            | Main Artisan command |
+| bob       | `php artisan bob::build` | Main Bob command     |