PHP library for sending data through Heap API.
You can install it using Composer:
composer require iagomelanias/heap-php
$heap = new \Heap\Client('APP_ID');
$heap->track('Paid Order', '[email protected]');
$heap = new \Heap\Client('APP_ID');
$heap->addUserProperties('[email protected]', array(
'profession' => 'Scientist',
));