PHP code example of mitquinn / heap-helper
1. Go to this page and download the library: Download mitquinn/heap-helper library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mitquinn / heap-helper example snippets
$configuration = new \Mitquinn\HeapHelper\HeapConfiguration('apiKey', 'appId');
$heapHelper = new \Mitquinn\HeapHelper\HeapHelper($configuration);
$event = new \Mitquinn\HeapHelper\Resources\HeapEvent(
'eventName',
'[email protected]',
['propertyKey' => 'propertyValue']
);
$heapResponse = $heapHelper->track($event);