amirasaran/smsgateway

Mobile Sms Gateway (smsgateway.me)

1.0.0 2016-07-25 14:58 UTC

This package is auto-updated.

Last update: 2024-04-09 17:45:52 UTC


README

Turn your Android phone into a SMS Gateway

Send and receive messages programmatically through your phone using API service

How to install

The preferred way to install this extension is through composer.

Either run

php composer.phar require amirasaran/smsGateway:dev-master

or add

"amirasaran/smsGateway": "dev-master"

How to Use

....
$login = [
    'username' => 'Your-Email@Exmaple.com',
    'password' => 'YourPassword'
];
$smsGateway = new amirasaran\smsgateway\SmsGateway($login);
$devices = $smsGateway->getDevices();

var_dump($devices);

...