Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/namshi/smscountry

PHP library to send SMS messages through SMSCountry.
https://github.com/namshi/smscountry

Last synced: 1 day ago
JSON representation

PHP library to send SMS messages through SMSCountry.

Awesome Lists containing this project

README

        

# NAMSHI | SMSCountry
[![Build Status](https://travis-ci.org/namshi/smscountry.svg?branch=master)](https://travis-ci.org/namshi/smscountry)

This small library provides support for sending Sms messages via SMSCountry

## Installation

Installation can be done via composer, as the
library is already on [packagist](https://packagist.org/packages/namshi/smscountry).

The library uses semantic versioning for its API,
so it is recommended to use a stable minor version
(1.0, 1.1, etc.) and stick to it when declaring dependencies
through composer:

```
"namshi/smscountry": "1.0.*",
```

Pick major and minor version according to your needs.

## Usage

Using this library is super easy:

``` php
sendSms($phoneNumber, $body);

```