arter / amos-ticket
There is no license information available for the latest version (1.4.0) of this package.
Amos Ticket
1.4.0
2024-04-02 14:54 UTC
Requires
- php: >=5.4.0
- arter/amos-admin: ^2.0.31
- arter/amos-core: ^1.9.58
- arter/amos-email-manager: ^1.1.19
- softark/yii2-dual-listbox: ^1.0
This package is auto-updated.
Last update: 2025-03-07 11:50:22 UTC
README
Ticket management.
Installation
You need to require this package and enable the module in your configuration.
add to composer requirements in composer.json
"open2/amos-ticket": "dev-master",
or run command bash:
composer require "open2/amos-ticket:dev-master"
Enable the News modules in modules-amos.php, add :
'ticket' => [
'class' => 'open2\amos\ticket\AmosTicket',
],
add news migrations to console modules (console/config/migrations-amos.php):
'@vendor/open2/amos-ticket/src/migrations'
Add ticket to Comments:
'comments' => [
'class' => 'arter\amos\comments\AmosComments',
'modelsEnabled' => [
.
.
'open2\amos\ticket\models\Ticket', //line to add
.
.
],
'enableMailsNotification' => false,
'enableUserSendMailCheckbox' => false
],