]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/symfony2/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / symfony2 / README.md
1 # Symfony2
2
3 This plugin provides completion for [Symfony 2](https://symfony.com/), as well as aliases for frequent Symfony commands.
4
5 To use it add symfony2 to the plugins array in your zshrc file.
6
7 ```bash
8 plugins=(... symfony2)
9 ```
10
11 ## Aliases
12
13 | Alias         | Command                      | Description                   |
14 |---------------|------------------------------|-------------------------------|
15 | `sf`          | php app/console              | Start the symfony console     |
16 | `sfcl`        | sf cache:clear               | Clear the cache               |
17 | `sfsr`        | sf server:run                | Run the dev server            |
18 | `sfcw`        | sf cache:warmup              | Use the Bundles warmer        |
19 | `sfroute`     | sf debug:router              | Show the different routes     |
20 | `sfcontainer` | sf debug:container           | List the different services   |
21 | `sfgb`        | sf generate:bundle           | Generate a bundle             |
22 | `sfgc`        | sf generate:controller       | Generate a controller         |
23 | `sfgcom`      | sf generate:command          | Generate a command            |
24 | `sfge`        | sf doctrine:generate:entity  | Generate an entity            |
25 | `sfsu`        | sf doctrine:schema:update    | Update the schema in Database |
26 | `sfdc`        | sf doctrine:database:create  | Create the Database           |
27 | `sfdev`       | sf --env=dev                 | Update environment to `dev`   |
28 | `sfprod`      | sf --env=prod                | Update environment to `prod`  |