Download the PHP package guzbyte/ticket without Composer

On this page you can find all versions of the php package guzbyte/ticket. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package ticket

Guzbyte Ticket V1.0.1

This is is simple laravel ticket package system that manages your ticketing system in your platform. This packages is Laravel 5+ to 8. This packages leverages on the Laravel default User and Authentication class. This packages has its own routes with prefix "/ticket".

Description

A ticketing system is a management tool that processes and catalogs customer service requests. Tickets, also known as cases or issues, need to be properly stored alongside relevant user information. This ticketing system is user-friendly for customer service representatives, managers, and administrators.

Features

  1. Guzbyte ticket three main users roles users, agents, and admins.
  2. User can create new ticket, view, comment on ticket as well close their own ticket
  3. Ticket allows the upload of attachment.
  4. On creation of ticket it is automatically assigned to available agents.
  5. Allows only one ticket admin
  6. Admin role ticket users can create categories, priorities and agents.
  7. Admin roles ticket users can also comment on ticket.
  8. Ticket can be re-assigned to another agent.
  9. Easy texteditor for easy customization of tciekts.

Requirements

First Make sure you have got this Laravel setup working:

  1. Laravel 5+
  2. Bootstrap 4
  3. Users table set up
  4. Laravel email configuration.

Installation

The installation process is very easy. Step 1. Run the following code in terminal
composer require guzbyte/ticket
Step 2. After install, you have to add this line on your config/app.php in Service Providers section
Guzbyte\Ticket\TicketServiceProvider::class
Step 3. (only for laravel 8) Goto Vendor/guzbyte/ticket/src/config/ticket.php edit the $users variable to

$user = new App\Models\User;

Step 4. Publish the package php artisan vendor:publish

Note You can edit this to match your Users Model namespace not just for Laravel 8
Step 5. Make sure authentication scalffolding is already active.
Step 6. Run Migration.

php artisan migrate

Step 6. Register at least one or more user into the system.
Step 7. Run the installation route. https://your-website.com/ticket/install
Step 8. Enter the email you want to be the main adminstrator of the system.
THATS IT !!!

Default Routes
Users: https://your-website.com/ticket
Agents: https://your-website.com/ticket/agent
Admin: https://your-website.com/ticket/admin


All versions of ticket with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package guzbyte/ticket contains the following files

Loading the files please wait ....