johnproza/yii2-comments

Comments extension for items

Installs: 6

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

dev-master 2019-03-11 21:22 UTC

This package is auto-updated.

Last update: 2024-04-12 08:41:38 UTC


README

Comments extension for items

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist johnproza/yii2-comments "*"

or add

"johnproza/yii2-comments": "*"

to the require section of your composer.json file.

Usage

Before using you must prepare database

php yii migrate --migrationPath=@vendor/johnproza/yii2-comments/migrations 

Module setup

Insert into your config file

'modules' => [
    'comments' => [
        'class' => 'oboom\comments\Module',
    ],
]