pavolbiely / liveagent
Unofficial LiveAgent API v3 PHP Client
dev-master
2018-09-16 14:42 UTC
Requires
- php: >=7.1
- nette/tester: 2.0.1
This package is auto-updated.
Last update: 2025-03-17 11:13:32 UTC
README
This is an unofficial LiveAgent API v3 PHP Client. QualityUnit does not provide official one yet.
This is still an unstable development version. Currently only all GET requests are implemented and one POST to create a ticket. Feel free to contribute and add any missing requests.
Installation
Use composer to install this package.
Example of usage
Create a new LiveAgentAPI client instance
$la = new QualityUnit\LiveAgentApi('https://yourliveagantdomain.com/api/v3', 'api_key'); $ticket = new QualityUnit\Ticket('Test API', 'This is a testing message.', 'recipient@example.org', 'user@example.org'); print_r($la->createTicket($ticket));
How to run tests?
Tests are build with Nette Tester. You can run it like this:
php -f tester ./ -c php.ini-mac --coverage coverage.html --coverage-src ../src
Minimum requirements
- PHP 7.1+
- php-curl
License
MIT License (c) Pavol Biely
Read the provided LICENSE file for details.