arter/amos-sondaggi

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

Sistema AMOS per gestire i sondaggi

1.9.4 2023-04-06 14:03 UTC

This package is auto-updated.

Last update: 2024-04-02 14:43:44 UTC


README

Plugin to make surveys.

Installation

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

Either run

composer require arter/amos-sondaggi

or add this row

"arter/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' => 'arter\amos\sondaggi\AmosSondaggi'
    ],
],

3. Apply migrations

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

or add this row to your migrations config in console:

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