execut/yii2-pages-alias

Integration module for yii2-pages and yii2-alias modules

0.1.1 2020-11-17 15:03 UTC

This package is auto-updated.

Last update: 2024-04-17 22:27:09 UTC


README

Integration module for execut/yii2-pages and yii2-alias.

For license information check the LICENSE-file.

Latest Stable Version Total Downloads Build Status

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require execut/yii2-pages-alias

or add

"execut/yii2-pages-alias": "dev-master"

to the require section of your composer.json file.

Usage

Add to your applications configs bootstrapping of module:

return [
    'bootstrap' => [
        // for common app:
        'pagesAlias' => \execut\pagesAlias\bootstrap\Common::class,
        // for console app:
        'pagesAlias' => \execut\pagesAlias\bootstrap\Console::class,
    ]
];