Package Data | |
---|---|
Maintainer Username: | sonnygauran |
Package Create Date: | 2015-09-07 |
Package Last Update: | 2015-09-07 |
Home Page: | |
Language: | PHP |
License: | BSD-3-Clause |
Last Refreshed: | 2024-11-23 03:14:49 |
Package Statistics | |
---|---|
Total Downloads: | 12 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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.
Via Composer
$ composer require ticketevolution/ticketevolution-php
$apiClient = TicketEvolution::settings([
'baseUrl' => 'https://api.ticketevolution.com',
'apiVersion' => 'v9',
'apiToken' => 'xxxxxxxxxxxxxxxxxxxxxxxx',
'apiSecret' => 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy',
]);
$events = $apiClient->listEvents();
Please see CONTRIBUTING for details.
The BSD 3-Clause License (New BSD). Please see License File for more information.
Some inspiration was taken from the ShopifyExtras/PHP-Shopify-API-Wrapper