PHPackages                             quentinix/allmysms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. quentinix/allmysms

AbandonedArchivedLibrary[API Development](/categories/api)

quentinix/allmysms
==================

A PHP client library for accessing AllMySMS APIs

1.0.4(6y ago)0227MITPHPPHP &gt;=5.3.0

Since Sep 14Pushed 6y agoCompare

[ Source](https://github.com/Quentinix/AllMySMS)[ Packagist](https://packagist.org/packages/quentinix/allmysms)[ RSS](/packages/quentinix-allmysms/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (2)Dependencies (2)Versions (8)Used By (0)

AllMySMS
========

[](#allmysms)

A PHP Client library for accesing AllMySMS APIs. Used official documentation : [https://www.allmysms.com/\_documents/api/http/AllMySMS\_DocTechnique\_Api\_HTTP.pdf](https://www.allmysms.com/_documents/api/http/AllMySMS_DocTechnique_Api_HTTP.pdf)

Installation
------------

[](#installation)

This page contains information about installing the Library for PHP.

### Requirements

[](#requirements)

- PHP version 5.3.0 or greater (including PHP 7)

### Obtaining the client library

[](#obtaining-the-client-library)

There are two options for obtaining the files for the client library.

#### Using Composer

[](#using-composer)

You can install the library by adding it as a dependency to your composer.json.

```
  "require": {
    "quentinix/allmysms": "^1.0"
  }

```

#### Cloning from GitHub

[](#cloning-from-github)

The library is available on [GitHub](https://github.com/Quentinix/AllMySMS). You can clone it into a local repository with the git clone command.

```
git clone https://github.com/Quentinix/AllMySMS.git

```

### What to do with the files

[](#what-to-do-with-the-files)

After obtaining the files, ensure they are available to your code. If you're using Composer, this is handled for you automatically. If not, you will need to add the `autoload.php` file inside the client library.

```
require '/path/to/allmysms/folder/autoload.php';

```

Usage
-----

[](#usage)

### Initialize client

[](#initialize-client)

```
