futuretek / yii2-gii-generators
Generators and templates for yii2-gii
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.5.0
- yiisoft/yii2: ^2.0.0
This package is auto-updated.
Last update: 2025-03-06 04:28:33 UTC
README
Templates and generators for yii2-gii
Should be used only for development.
require-dev
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require-dev futuretek/yii2-gii-generators "*"
or add to require-dev
"futuretek/yii2-gii-generators": "*"
to the require section of your composer.json
file.
Usage
It has automatic configuration. See composer.json
- extra:yii-config:web
Or you can use your own configuration like this
'modules' => [ 'gii' => [ 'class' => 'yii\gii\Module', 'allowedIPs' => ['127.0.0.1', '::1'], 'generators' => [ 'smartyCrud' => [ 'class' => 'futuretek\gii\generators\smartyCrud\Generator', 'templates' => [ 'futuretek' => '@app/vendor/futuretek/yii2-gii-generators/smartyCrud/default', ] ], 'ftsCrud' => [ 'class' => 'futuretek\gii\generators\crud\Generator', 'templates' => [ 'default' => '@app/vendor/futuretek/yii2-gii-generators/crud/default', 'purus' => '@app/vendor/futuretek/yii2-gii-generators/crud/purus', ] ], 'model' => [ 'class' => 'yii\gii\generators\model\Generator', 'templates' => [ 'futuretek' => '@app/vendor/futuretek/yii2-gii-generators/model', ] ] ] ], ]