cuifox / yii2-gii
yii2-gii
1.0.0
2024-09-30 01:25 UTC
Requires
- php: >=5.6.0
- yiisoft/yii2: ~2.0.14
This package is not auto-updated.
Last update: 2025-03-04 03:35:26 UTC
README
介绍
yii2-gii
安装教程
php composer.phar require cuifox/yii2-gii:*
使用说明
if (YII_ENV_DEV) {
// ...
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '::1', '*'],
'generators' => [
'model' => [
'class' => CuiFox\gii\generators\model\Generator::class,
'ns' => 'app\models\common',
],
],
];
}