antony-forber / autogen
Visual generator for Laravel
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/antony-forber/autogen
This package is auto-updated.
Last update: 2025-10-07 20:39:49 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'
],
],
];