Files
yii2/extensions/yii/gii
Carsten Brandt 3fba6dc314 updated gii docs
2013-12-12 11:14:37 +01:00
..
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-10 20:42:43 +01:00
2013-12-12 11:14:37 +01:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00
2013-12-09 23:51:49 -05:00

Gii Extension for Yii 2

This extension provides a Web-based code generator, called Gii, for Yii 2 applications. You can use Gii to quickly generate models, forms, modules, CRUD, etc.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require yiisoft/yii2-gii "*"

or add

"yiisoft/yii2-gii": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
	'modules' => [
		'gii' => 'yii\gii\Module',
		...
	],
	...
];

You can then access Gii through the following URL:

http://localhost/path/to/index.php?r=gii