open20 / amos-ticket
Amos Ticket
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:component
Requires
- php: >=5.4.0
- open20/amos-admin: ^2.0.31
- open20/amos-core: ^1.9.58
- open20/amos-email-manager: ^1.1.19
- softark/yii2-dual-listbox: ^1.0
This package is auto-updated.
Last update: 2024-10-24 18:33:27 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
"open20/amos-ticket": "dev-master",
or run command bash:
composer require "open20/amos-ticket:dev-master"
Enable the News modules in modules-amos.php, add :
'ticket' => [ 'class' => 'open20\amos\ticket\AmosTicket', ],
add news migrations to console modules (console/config/migrations-amos.php):
'@vendor/open20/amos-ticket/src/migrations'
Add ticket to Comments:
'comments' => [
'class' => 'open20\amos\comments\AmosComments',
'modelsEnabled' => [
.
.
'open20\amos\ticket\models\Ticket', //line to add
.
.
],
'enableMailsNotification' => false,
'enableUserSendMailCheckbox' => false
],