gii.md 462 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
The Gii code generation tool
============================

Yii2 includes a handy tool that allows rapid prototyping by generating commonly used code snippets
as well as complete CRUD controllers.

Installing and configuring
--------------------------

How to use it
-------------

Add these lines to your config file:

```php
    'modules' => [
            'gii' => ['yii\gii\Module']
        ]
```

Creating your own templates
---------------------------

TDB