amos/results


README

Plugin for Results.

Installation

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

Either run

composer require amos/results

or add this row

"amos/results": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

'modules' => [
    'results' => [
        'class' => 'amos\results\Module',
    ],
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/amos/results/src/migrations

or add this row to your migrations config in console:

return [
    '@vendor/amos/results/src/migrations',
];