1. Go to this page and download the library: Download avidian/semaphore 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/ */
avidian / semaphore example snippets
use Avidian\Semaphore\Client;
$client = new Client('your api key', [/* options */]);
$response = $client->send('09991234567', 'your message');
// multiple recipients
$recipients = '09991234567, 09997654321';
$response = $client->send($recipients, 'your message');