Quick sms webservice by apimaster
Via Composer
$ composer require apimaster/sms
<?php
include 'vendor/autoload.php';
use APIMaster\SMS\SMS;
SMS::setApiKey('<YOUR_API_KEY');
$sms = SMS::send('0933xxxx957', 106, ['code' => 4859]);
print_r($sms);
Replace <YOUR_API_KEY>
with your given api key.
You can see documents in postman. Don't forget to check out endpoint examples.
This library is open-sourced package licensed under the MIT license.