1. Go to this page and download the library: Download ezeksoft/rocketzap 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/ */
ezeksoft / rocketzap example snippets
use Ezeksoft\RocketZap\
{SDK as RocketZap, Http, Enum\ProjectType, Exception\CustomerRequiredException};
$rocketzap = RocketZap::SDK('YOUR_ACCESS_TOKEN');
$rocketzap->setSession('YOUR_SESSION');
$rocketzap
->setCustomer($rocketzap->customer()->setId(1)->setPhone('5511900000000'))
->setMessage($rocketzap->message()->setText("Test message"))
->save([ProjectType::INSTANTLY]);