amirasaran / smsgateway
Mobile Sms Gateway (smsgateway.me)
1.0.0
2016-07-25 14:58 UTC
This package is auto-updated.
Last update: 2024-12-09 19:18:19 UTC
README
Turn your Android phone into a SMS Gateway
Send and receive messages programmatically through your phone using API service
- first register for free login/signup
- read documentation
- smsgateway.me
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); ...