arter / amos-sondaggi
There is no license information available for the latest version (1.10.0) of this package.
Sistema AMOS per gestire i sondaggi
1.10.0
2024-04-29 14:56 UTC
Requires
- php: >=5.4.0
- ext-json: *
- arter/amos-admin: ^2.2.0
- arter/amos-attachments: ^1.1.11
- arter/amos-core: ^1.19.0
- arter/amos-dashboard: ^1.9
- arter/amos-email-manager: ^1.1.19
- arter/amos-upload: *
- kartik-v/yii2-detail-view: *
- kartik-v/yii2-widget-fileinput: *
This package is auto-updated.
Last update: 2025-03-07 12:04:52 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',
];