e015/kpi

1.0.4 2020-01-14 15:52 UTC

README

Plugin for E015 KPI.

Installation

1. The preferred way to install this extension is through composer.

Either run

composer require e015/kpi

or add this row

"e015/kpi": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'e015kpi' => [
        'class' => 'e015\kpi\Module',
    ],
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/e015/kpi/src/migrations

or add this row to your migrations config in console:

<?php
return [
    '@vendor/e015/kpi/src/migrations',
];