nooclik/yii2-blog

Blog for Yii2

Installs: 25

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:yii2-extension

dev-master 2019-11-02 16:41 UTC

This package is auto-updated.

Last update: 2024-04-10 01:56:33 UTC


README

Blog for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist nooclik/yii2-blog "dev-master"

or add

"nooclik/yii2-blog": "*"

to the require section of your composer.json file.

yii migrate --migrationPath="vendor\nooclik\yii2-blog\src\migrations" 

Usage

'modules' => [
        'blog' => [
            'class' => 'nooclik\blog\Blog',
            'params' =>
            [
                // Включить работу с комментариями
                'useComment' => true
            ]
        ]
    ],