arter/amos-ticket

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

Amos Ticket

Maintainers

👁 art-er

Package info

repo.aster.it/elitedivision/amos-ticket

Type:component

pkg:composer/arter/amos-ticket

Statistics

Installs: 602

Dependents: 0

Suggesters: 0

1.4.0 2024-04-02 14:54 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Unknown License 4fab6d5c5ffc4618f1eeca98a414e7df10092843

ticketamos

This package is auto-updated.

Last update: 2026-06-07 14:46:25 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
 ],