1. Go to this page and download the library: Download buibr/budget-sms-php 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/ */
buibr / budget-sms-php example snippets
$budget = new \buibr\Budget\BudgetSMS( [
'username'=>'xxx',
'userid'=> 'xxx',
'handle'=>'xxx',
]);
// sender name
$budget->setSender("Test");
// add recepient
$budget->setRecipient('+38971xxxxxx');
// add message
$budget->setMessage('Testing the provider');
// Send the message
$send = $budget->send();