PHP code example of webvimark / generators
1. Go to this page and download the library: Download webvimark/generators library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
webvimark / generators example snippets
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class'=>'yii\gii\Module',
'generators' => [
'n-model' => 'webvimark\generators\model\Generator',
'n-crud' => 'webvimark\generators\crud\Generator',
'n-module' => 'webvimark\generators\module\Generator',
'n-extension' => 'webvimark\generators\extension\Generator',
]
];