2017 © Pedro Pelรกez
 

library an-sms

A PHP library to send and receive SMS text messages through various providers/gateways.

image

jandreasn/an-sms

A PHP library to send and receive SMS text messages through various providers/gateways.

  • Friday, November 3, 2017
  • by jandreasn
  • Repository
  • 1 Watchers
  • 1 Stars
  • 741 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 2 % Grown

The README.md

AnSms - A PHP SMS library

Version, (*1)

An extendable library for sending and receiving SMS messages., (*2)

Supported SMS gateways

Send SMS Delivery reports Receive SMS Premium SMS
46elks โœ” โœ” โœ”
Cellsynt โœ” โœ” โœ” โœ”
Vonage (formerly Nexmo) โœ” โœ” โœ”
Twilio โœ” โœ” โœ”
Telenor SMS Pro โœ” โœ”

You can add and use your own gateway. This library enables easy switching between different gateways., (*3)

Installation

Add the package as a requirement to your composer.json:, (*4)

$ composer require andreasnij/an-sms

If you want to use the 46elks, Cellsynt or Telenor SMS Pro gateway you also you need implementations of PSR-7: HTTP message interfaces, PSR-17: HTTP Factories and PSR-18: HTTP Client. A popular package for this is Guzzle. You can install it with:, (*5)

$ composer require guzzlehttp/guzzle:^7.0 guzzlehttp/psr7:^2.0

You may choose to use any other implementations of the PSR interfaces though., (*6)

If you want to use the Twilio gateway you also need to install the Twilio SDK:, (*7)

$ composer require twilio/sdk

If you want to use the Vonage gateway you also need to install the Vonage client:, (*8)

$ composer require vonage/client-core

Usage

use AnSms\{
    SmsTransceiver,
    Message\Message,
    Message\PremiumMessage,
    Gateway\CellsyntGateway
};

$gateway = new CellsyntGateway('username', 'password');
$smsTransceiver = new SmsTransceiver($gateway);

// Send SMS
$message = Message::create('46700000000', 'Hello world!');
$smsTransceiver->sendMessage($message);

// Receive SMS
$receivedMessage = $smsTransceiver->receiveMessage($_GET);

// Receive SMS delivery report
$deliveryReport = $smsTransceiver->receiveDeliveryReport($_GET);

// Send Premium SMS
$premiumMessage = PremiumMessage::createFromIncomingMessage(
    'Thanks for your payment!', 
    5, 
    $receivedMessage
);
$smsTransceiver->sendMessage($premiumMessage);

Upgrading

Please see UPGRADING for details., (*9)

Author

Andreas Nilsson (https://github.com/andreasnij), (*10)

License

This software is licensed under the MIT license - see the LICENSE file for details., (*11)

The Versions

03/11 2017

dev-master

9999999-dev http://github.com/jandreasn/an-sms

A PHP library to send and receive SMS text messages through various providers/gateways.

  Sources   Download

MIT

The Requires

 

The Development Requires

payment sms mobile texts premium psms

03/11 2017

0.2

0.2.0.0 http://github.com/jandreasn/an-sms

A PHP library to send and receive SMS text messages through various providers/gateways.

  Sources   Download

MIT

The Requires

 

The Development Requires

payment sms mobile texts premium psms

07/05 2017

0.1

0.1.0.0 http://github.com/jandreasn/an-sms

A PHP library to send and receive SMS text messages through various providers/gateways.

  Sources   Download

MIT

The Requires

 

The Development Requires

payment sms mobile texts premium psms