heyloyalty / hl-phpclient
php client for heyloyalty rest api
1.6.6
2026-04-30 10:46 UTC
Requires
- php: >=5.4
- ext-curl: *
Requires (Dev)
- phpunit/phpunit: ~4|~5
This package is auto-updated.
Last update: 2026-06-30 11:09:51 UTC
README
HL-phpclient
Php client for heyloyalty api.
The client also has methods for using reseller endpoints, how to become a reseller Accounts Account users
This client contains all methods for interacting with Heyloyalty api.
Installation
The recommended way to install HL-phpclient is through Composer
composer require heyloyalty/hl-phpclient
Simple example
Api key and secret are required from your Heyloyalty account
use Phpclient\HLMembers; use Phpclient\HLClient; $client = new HLClient('your-api-key','your-api-secret'); $memberService = new HLMembers($client); $listId = 12; $members = $memberService->getMembers($listId); var_dump($members);
Further documentation
Look at the code examples in the examples folder