2017 © Pedro Peláez
 

library sdk

A PHP wrapper for Textmagic API

image

textmagic/sdk

A PHP wrapper for Textmagic API

  • Monday, October 26, 2015
  • by rasprc
  • Repository
  • 6 Watchers
  • 3 Stars
  • 8,121 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 1 Versions
  • 9 % Grown

The README.md

Synopsis

The TextMagic SMS API PHP wrapper can save you a lot of time, as it includes all the necessary API commands and tests. It only takes a few seconds to download it from GitHub and to install it into your own app or software. After installation, you’ll then be able to send text messages., (*1)

Code Example

$client = new TextmagicRestClient('<USERNAME>', '<APIV2_TOKEN>');
$result = ' ';
try {
    $result = $client->messages->create(
        array(
            'text' => 'Hello from TextMagic PHP',
            'phones' => implode(', ', array('99900000'))
        )
    );
}
catch (\Exception $e) {
    if ($e instanceof RestException) {
        print '[ERROR] ' . $e->getMessage() . "\n";
        foreach ($e->getErrors() as $key => $value) {
            print '[' . $key . '] ' . implode(',', $value) . "\n";
        }
    } else {
        print '[ERROR] ' . $e->getMessage() . "\n";
    }
    return;
}
echo $result['id'];

Installation Instructions

Quick Installation

Run the following command to install the TextMagic PHP wrapper using composer: a package management system used to install and manage software packages written in PHP:, (*2)

composer require textmagic/sdk

Manual Installation

You can also install the TextMagic PHP wrapper from the GitHub repository using git. Run the following commands:, (*3)

git clone git://github.com/textmagic/textmagic-rest-php.git
cd textmagic-rest-php

Requirements

The PHP wrapper has the following requirements: * PHP 5.2.1 or higher * phpunit 4.5 or higher, (*4)

API Reference

  • https://www.textmagic.com/docs/api/php/
  • https://rest.textmagic.com/api/v2/doc

License

The library is available as open source under the terms of the MIT License., (*5)

The Versions

26/10 2015

dev-master

9999999-dev http://github.com/textmagic/textmagic-rest-php

A PHP wrapper for Textmagic API

  Sources   Download

MIT

The Requires

  • php >=5.2.1

 

The Development Requires

api sms textmagic