aminkt/sms-driver-rest-api

Rest Api Sms driver created to work with more than one sms service provider with same interface.

v1.0.0 2018-05-14 20:21 UTC

This package is auto-updated.

Last update: 2024-04-22 10:54:20 UTC


README

Rest Api Sms driver created to work with more than one sms service provider with same interface.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist aminkt/sms-driver-rest-api "*"

or add

"aminkt/sms-driver-rest-api": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

$sms = new \aminkt\sms\Sms();
// Ingnore below line if you don't want change default driver.
$sms->setDrviver('\your\driver\Class');
$sms->setLoginData([`LOGIN_DATA`]);
$sms->sendSms([
    'message'=>'Your test message.',
    'numbers'=>['09120813856', '+989121234567']
]);

LOGIN_DATA depends on what driver is used to send sms, there is a list of supported drivers is blew User your own driver

If you want you can simply write your own driver and attach it to this library.

And if you want you can publish it in this library by your own name.

If you want create your own driver please flow below steps:

  1. Create your class and use psr-7 namespcae.
  2. Extend your class from aminkt\sms\drivers\AbstracDriver
  3. Implement your codes.
  4. Attach your driver to library as described before
  5. Publish your code in sms-driver-rest-api library

List of drivers

List of driver that published and avilable right now.

Driver name namespace createdBy publish date
Pardad \aminkt\sms\drivers\Pardad Amin Keshavarz 17 / 8 /2017
KaveNegar \aminkt\sms\drivers\KaveNegar mr-exception 5 / 2 /2018

|

Login Data for Pardad

parameters type description
username string username for auth
password string password for auth

Login Data for KaveNegar

parameters type description
token string token given in cpanel

Be aware use of this library and its driver is alowed for all but you should keep recources and authors names.

Help us to improve

If you create your own driver we become so happy if you pulblish it in our library.

Amin Keshavarz

Mr-Exception

[Mail to Aminn Keshavarz](mailto: ak_1596@yahoo.com)