eluhr/yii2-comments-module

There is no license information available for the latest version (1.0.0) of this package.

Comments module for Yii 2 Framework

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 2

Type:yii2-extension

1.0.0 2020-03-30 15:57 UTC

This package is auto-updated.

Last update: 2024-03-29 04:26:04 UTC


README

Installation

composer require dmstr/yii2-comments-module

Configuration

Add this to your configuration

[
    'modules' => [
        'comment' => [
            'class' => dmstr\comments\Module::class
        ]
    ],
    'controllerMap' => [
        'migrate' => [
            'migrationPath' => [
                '@vendor/dmstr/comments/migrations'
            ]
        ]
    ] 
];