antony-forber / autogen
There is no license information available for the latest version (dev-master) of this package.
Visual generator for Laravel
dev-master / 1.0.x-dev
2019-05-07 06:49 UTC
This package is auto-updated.
Last update: 2025-05-07 19:40:03 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require "antony-forber/autogen:@dev"
or add
"antony-forber/autogen": "@dev"
to the require section of your composer.json file.
Config
Update
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
];
to the next
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'generators' => [
'extendedGenerator' => [
'class' => 'AntonyForber\gii\model\Generator'
],
],
];