PHPackages                             linkorb/ticketbox-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. linkorb/ticketbox-client

ActiveLibrary[API Development](/categories/api)

linkorb/ticketbox-client
========================

TicketBox Client for TicketBox Application

v1.1(10y ago)0171MITPHPPHP &gt;=5.3.0

Since Sep 18Pushed 10y ago7 watchersCompare

[ Source](https://github.com/linkorb/ticketbox-client)[ Packagist](https://packagist.org/packages/linkorb/ticketbox-client)[ Docs](https://github.com/linkorb/ticketbox-client)[ RSS](/packages/linkorb-ticketbox-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

TicketBox Client
================

[](#ticketbox-client)

Create tickets for TicketBox and view activities from your application

Installation
------------

[](#installation)

```
composer require linkorb/ticketbox-client

```

Example
-------

[](#example)

Create Client

```
require_once __DIR__ . '/../vendor/autoload.php';

use Linkorb\TicketBoxClient\Client as Client;
use Linkorb\TicketBoxClient\Ticket as Ticket;

// get the client
$client = new Client(
    'http://tickets.dev/api/v1/',
    ,

);
```

Create Ticket by logged in User

```
// Create Ticket with Logged in user
$ticket = new Ticket( $client ); // padidng client
$ticket->setSubject();
$ticket->setDescription();

try {
	$ticket->create();
} catch( Exception $e ) {
	echo $e->getMessage();
}
```

Create ticket by Anonymous user

```
// Create Anon Ticket
$ticket = new Ticket( $client );
$ticket->setSubject();
$ticket->setDescription();
$ticket->setUser();
$ticket->setEmail();
$ticket->setPhone();
$ticket->setOrg();

try {
	$ticket->create();
} catch( Exception $e ) {
	echo $e->getMessage();
}
```

Get Ticket &amp; its activities

```
// Create Anon Ticket
$ticket = new Ticket( $client );

$ticket->get();
echo $ticket->getSubject(); // all the field null if not found.

$activities = $ticket->getActivity(); // get activities
var_dump($activities);
```

Change status of ticket

```
// Get ticket
$ticket = new Ticket( $client );
$ticket->get(5);

try {
	$ticket->setPending();
	// $ticket->setClose();
	// $ticket->setSchedule();

} catch ( Exception $e ) {
	echo $e->getMessage();
}
```

Message ticket

```
// Get ticket
$ticket = new Ticket( $client );
$ticket->get();

try {

	$ticket->message(  );

} catch ( Exception $e ) {
	echo $e->getMessage();
}
```

Transfer Ticket

```
// Get ticket
$ticket = new Ticket( $client );
$ticket->get();

try {
	$ticket->transfer();
} catch ( Exception $e ) {
	echo $e->getMessage();
}
```

Brought to you by the LinkORB Engineering team
----------------------------------------------

[](#brought-to-you-by-the-linkorb-engineering-team)

[![](https://camo.githubusercontent.com/62fb66b034de7ea7fca9fd9776424b5348daa76ef8622caf92c2f7622003e5ef/687474703a2f2f7777772e6c696e6b6f72622e636f6d2f642f6d6574612f74696572312f696d616765732f6c696e6b6f7262656e67696e656572696e672d6c6f676f2e706e67)](https://camo.githubusercontent.com/62fb66b034de7ea7fca9fd9776424b5348daa76ef8622caf92c2f7622003e5ef/687474703a2f2f7777772e6c696e6b6f72622e636f6d2f642f6d6574612f74696572312f696d616765732f6c696e6b6f7262656e67696e656572696e672d6c6f676f2e706e67)
Check out our other projects at [engineering.linkorb.com](http://engineering.linkorb.com).

Btw, we're hiring!

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~66 days

Total

2

Last Release

3820d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1db66b320db18b8036ea68211b7d8a39e7c6da97e6fd29f59a50380ebb69d0bb?d=identicon)[joostfaassen](/maintainers/joostfaassen)

---

Top Contributors

[![igormukhingmailcom](https://avatars.githubusercontent.com/u/6544038?v=4)](https://github.com/igormukhingmailcom "igormukhingmailcom (7 commits)")[![kishanio](https://avatars.githubusercontent.com/u/1800156?v=4)](https://github.com/kishanio "kishanio (6 commits)")[![h-wang](https://avatars.githubusercontent.com/u/3410322?v=4)](https://github.com/h-wang "h-wang (1 commits)")

---

Tags

phpapilinkorbclient libraryticketbox

### Embed Badge

![Health badge](/badges/linkorb-ticketbox-client/health.svg)

```
[![Health](https://phpackages.com/badges/linkorb-ticketbox-client/health.svg)](https://phpackages.com/packages/linkorb-ticketbox-client)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[hubspot/api-client

Hubspot API client

23414.2M16](/packages/hubspot-api-client)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.5k311.5k5](/packages/theodo-group-llphant)[resend/resend-php

Resend PHP library.

564.7M21](/packages/resend-resend-php)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

553.3M7](/packages/checkout-checkout-sdk-php)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
