2017 © Pedro Peláez
 

library laravel-sms

A Laravel Package for Sending out SMS from multiple Gateways

image

crafted-systems/laravel-sms

A Laravel Package for Sending out SMS from multiple Gateways

  • Tuesday, June 19, 2018
  • by vmosoti
  • Repository
  • 0 Watchers
  • 0 Stars
  • 84 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 15 Versions
  • 35 % Grown

The README.md

Laravel SMS

Latest Stable Version Latest Unstable Version StyleCI Build Status Scrutinizer Code Quality Total Downloads License, (*1)

This is a Laravel library meant to make it easier to send SMS and switch between multiple SMS Gateways., (*2)

Installation

You can install the package via composer:, (*3)

``` bash composer require crafted-systems/laravel-sms, (*4)

The package will register itself automatically.

Then publish the package configuration file

```bash
php artisan vendor:publish --provider=CraftedSystems\\LaravelSMS\\SMSServiceProvider

Usage

The default gateway is AfricasTalking, (*5)

Check the config file of all variables required, and then, (*6)

(new SMS())->send('254712345678','Test SMS');

or using Facade, (*7)

SMS::send('254712345678','Test SMS');

or using helper, (*8)

sms()->send('254712345678','Test SMS');

Adding new Gateway

use command, (*9)

php artisan make:gateway MyGateway

A class MyGateway.php will be generated under App/Gateways folder., (*10)

The class extends the SMSContract, (*11)

Remember to map your gateway in the sms config file., (*12)

Changing Gateway

Apart from declaring your default gateway on the sms config or env files, you can also change the gateway you want to use on the fly. e.g:, (*13)

SMS::gateway('mygateway')->send('254712345678','Test SMS');

Checking SMS balance

SMS::getBalance();

//or

SMS::gateway('mygateway')->getBalance();

Delivery Reports

sms()->getDeliveryReports(Request $request);

//or

sms()->gateway('mygateway')->getDeliveryReports(Request $request);

Contributing

Suggestions, pull requests , bug reporting and code improvements are all welcome. Feel free., (*14)

TODO

Write Tests :-(, (*15)

Credits

License

The MIT License (MIT). Please see License File for more information., (*16)

The Versions

19/06 2018

dev-master

9999999-dev

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

19/06 2018

v1.0.14

1.0.14.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

19/06 2018

v1.0.13

1.0.13.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

18/06 2018

v1.0.12

1.0.12.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

11/05 2018

v1.0.11

1.0.11.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

27/03 2018

v1.0.10

1.0.10.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

27/03 2018

v1.0.9

1.0.9.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

25/03 2018

v1.0.8

1.0.8.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

25/03 2018

v1.0.6

1.0.6.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

18/03 2018

v1.0.5

1.0.5.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

14/03 2018

v1.0.4

1.0.4.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

20/02 2018

v1.0.3

1.0.3.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

19/02 2018

v1.0.2

1.0.2.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

19/12 2017

v1.0.1

1.0.1.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires

 

14/12 2017

v1.0.0

1.0.0.0

A Laravel Package for Sending out SMS from multiple Gateways

  Sources   Download

MIT

The Requires