PHP code example of aayaresko / yii2-extended-gii

1. Go to this page and download the library: Download aayaresko/yii2-extended-gii 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/ */

    

aayaresko / yii2-extended-gii example snippets


return [
    'bootstrap' => ['gii'],
    'modules' => [
        'gii' => [
            'class' => 'aayaresko\gii\Module',
        ],
        // ...
    ],
    // ...
];

return [
    'view' => [
        'renderers' => [
            'twig' => [
                'class' => '\yii\twig\ViewRenderer',
                'cachePath' => '@runtime/twig/cache',
                'options' => YII_DEBUG ? [
                    'debug' => true,
                    'auto_reload' => true,
                ] : [],
                'extensions' => YII_DEBUG ? [
                    '\Twig_Extension_Debug',
                ] : [],
                'globals' => [
                    'html' => '\yii\helpers\Html',
                ],
                'functions' => [
                    'translate' => '\Yii::t',
                ],
                'uses' => [
                    'yii\bootstrap'
                ],
            ]
        ]
    ]
]