ticketevolution / ticketevolution-php
A PHP 7.1+ library for the Ticket Evolution API.
Installs: 22 864
Dependents: 2
Suggesters: 0
Security: 0
Stars: 22
Watchers: 31
Forks: 13
Open Issues: 1
Requires
- php: ^7.1.3 || ^8.0
- guzzlehttp/guzzle-services: ^1.1
- symfony/config: ^4.2 || ^5.0
Suggests
- monolog/monolog: Sends your logs to files, sockets, inboxes, databases and various web services
- rtheunissen/guzzle-log-middleware: Guzzle 6 middleware used to log requests and responses
- dev-master
- 5.0.0.x-dev
- 4.4.4
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.0
- 4.2.10
- 4.2.9
- 4.2.8
- 4.2.7
- 4.2.6
- 4.2.5
- 4.2.4
- 4.2.3
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 4.0.0-RC1
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 3.0.0.rc.1
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- dev-reload-description-when-updating-settings
- dev-remove-unnecessary-listings-option
This package is auto-updated.
Last update: 2024-11-19 22:09:41 UTC
README
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.