open20/amos-sondaggi

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

Sistema AMOS per gestire i sondaggi


README

Plugin to make surveys.

Installation

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

Either run

composer require open20/amos-sondaggi

or add this row

"open20/amos-sondaggi": "~1.0"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'sondaggi' => [
        'class' => 'open20\amos\sondaggi\AmosSondaggi'
    ],
],

3. Apply migrations

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

or add this row to your migrations config in console:

<?php
return [
    '@vendor/open20/amos-sondaggi/src/migrations',
];