1. Go to this page and download the library: Download kudinovfedor/sms-club-json 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/ */
kudinovfedor / sms-club-json example snippets
$manager = new \KudinovFedor\SmsClubJSON\SmsManager([
'token' => 'token', // Token of the user account (which can be obtained in your account in the "Profile" section)
'from' => 'from' // Alpha name from which to send
]);
// or
$manager = new \KudinovFedor\SmsClubJSON\SmsManager();
$manager->setToken('token');
$manager->setFrom('from');