2017 © Pedro Peláez
 

library sms-connect

Send and receive SMS with PHP

image

neogenia/sms-connect

Send and receive SMS with PHP

  • Sunday, November 22, 2015
  • by pryznar
  • Repository
  • 3 Watchers
  • 1 Stars
  • 83 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 4 Versions
  • 2 % Grown

The README.md

Smsconnect

, (*1)

Send and receive SMS with PHP (for Czech Republic), (*2)

Registration, (*3)

Installation

via composer:, (*4)

$ composer require smsbrana/sms-connect

Usage

Inbox

use \Neogate\SmsConnect\SmsConnect;
$smsConnect = new SmsConnect('<your_login>', '<secret_password>');
$smsConnect->getInbox();

Send SMS

use \Neogate\SmsConnect\SmsConnect;
$smsConnect = new SmsConnect('<your_login>', '<secret_password>');
$smsConnect->sendSms('<phone_number>', '<text_sms>');

Send bulk

$smsConnect->addRecipient('<phone_number>', '<text_sms>');
$smsConnect->addRecipient('<another_number>', '<another_sms>');
$smsConnect->sendBulk();

Using as extension in Nette Framework

config.neon, (*5)

extensions:
    smsconnect: Neogate\SmsConnect\SmsConnectExtension

config.local.neon, (*6)

smsconnect:
    login: 'your_login'
    password: 'secret_password'

finally inject extension, (*7)

/** @var SmsConnect */
private $smsConnect;

public function injectSmsConnectExtension(SmsConnect $smsConnect)
{
    $this->smsConnect = $smsConnect;
}

The Versions

22/11 2015

dev-master

9999999-dev https://github.com/neogenia/sms-connect

Send and receive SMS with PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

sms

22/11 2015

v0.3.0

0.3.0.0 https://github.com/neogenia/sms-connect

Send and receive SMS with PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

sms

10/11 2015

v0.2

0.2.0.0 https://github.com/neogenia/sms-connect

Send and receive SMS with PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

sms

09/11 2015

v0.1

0.1.0.0 https://github.com/neogenia/sms-connect

Send and receive SMS with PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

sms