2017 © Pedro Peláez
 

library skebby

laravel package for skebby sms gateway integration

image

jobayerccj/skebby

laravel package for skebby sms gateway integration

  • Thursday, July 19, 2018
  • by jobayercse
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

laravel-skebby

This is an unofficial package for integrating skebby sms gateway with laravel projects., (*1)

Requirements

  • php >= 7.0
  • php curl extension

Installation

you can install it using below composer command, (*2)

composer require jobayerccj/skebby, (*3)

How to use

  1. After installing package, write use jobayerccj\Skebby\Skebby; where you want to use it, (*4)

  2. Then create a new instance for that class like $skebby = new Skebby;, (*5)

  3. After that, update required information using following methods, (*6)

    $skebby->set_username('skebby_username'); $skebby->set_password('skebby_password'); $skebby->set_method('send_sms_classic'); $skebby->set_text('text for your sms'); $skebby->set_sender('ICT Euro Limited');, (*7)

    $recipients = array('+39..........'); $skebby->set_recipients($recipients);, (*8)

  4. At last, use this method to send your sms $sending_status = $skebby->send_sms(); $sending_status will show sending status(success, failed) whether it's failed or successful. If failed, then reason behind it, If successful, then will show sms id & remaining balance with status info., (*9)

    There are few other methods for helping you like get_credit_info() which will show your account's latest credit data., (*10)

The Versions

19/07 2018

dev-master

9999999-dev

laravel package for skebby sms gateway integration

  Sources   Download

MIT

The Requires

  • php >=7.0

 

The Development Requires

  • ext-curl *

by Md Jobayer Islam

19/07 2018

v1.0

1.0.0.0

package for skebby sms gateway

  Sources   Download

MIT