ticketevolution / ticketevolution-php by jwcobb

A PHP 7.1+ library for the Ticket Evolution API.
20,747
22
31
Package Data
Maintainer Username: jwcobb
Package Create Date: 2011-05-09
Package Last Update: 2023-12-07
Home Page:
Language: PHP
License: BSD-3-Clause
Last Refreshed: 2024-04-18 15:14:07
Package Statistics
Total Downloads: 20,747
Monthly Downloads: 335
Daily Downloads: 11
Total Stars: 22
Total Watchers: 31
Total Forks: 13
Total Open Issues: 1

PHP Client Library v4 for the Ticket Evolution API

The Ticket Evolution PHP Client is an open source framework created to simplify working with the Ticket Evolution API web service. We created it to enable you to quickly implement the Ticket Evolution API web service on your own site whether you are creating a new site or switching from a different provider. We released it as open source so that you could make changes and improvements as you see fit. When you do we hope that you will give these changes back to the community by contributing them back to the project.

Install

Via Composer

$ composer require ticketevolution/ticketevolution-php

Usage

use TicketEvolution\Client as TEvoClient;

$apiClient = new TEvoClient([
    'baseUrl'     => 'https://api.ticketevolution.com',
    'apiVersion'  => 'v9',
    'apiToken'    => 'xxxxxxxxxxxxxxxxxxxxxxxx',
    'apiSecret'   => 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy',
]);

$events = $apiClient->listEvents();
var_dump($events);

Contributing

Please see CONTRIBUTING for details.

Credits

License

The BSD 3-Clause License (New BSD). Please see License File for more information.