|
пре 7 година | |
---|---|---|
.. | ||
components | пре 6 година | |
controllers | пре 6 година | |
generators | пре 6 година | |
views | пре 6 година | |
CHANGELOG.md | пре 6 година | |
CodeFile.php | пре 6 година | |
Generator.php | пре 6 година | |
GiiAsset.php | пре 6 година | |
Module.php | пре 6 година | |
README.md | пре 6 година |
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.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yiisoft/yii2-gii "*"
or add
"yiisoft/yii2-gii": "*"
to the require section of your composer.json
file.
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