nikitakls / yii2-gii-scrud
Gii generator with service layer architecture
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
- yiisoft/yii2-gii: ~2.0.0
This package is not auto-updated.
Last update: 2025-03-30 07:25:10 UTC
README
Gii generator with service layer architecture
Installation
The preferred way to install this extension is through composer.
Either run
composer require --dev nikitakls/yii2-gii-scrud "*"
or add in dev section
"nikitakls/yii2-gii-scrud": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
$config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'generators' => [ 'scrud' => [ 'class' => 'nikitakls\gii\scrud\Generator', ] ], ];