PHPackages                             filippofinke/sms-apis - 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. filippofinke/sms-apis

ActiveLibrary

filippofinke/sms-apis
=====================

A simple wrapper to multiple free sms receive service

611PHP

Since Feb 24Pushed 6y agoCompare

[ Source](https://github.com/filippofinke/sms-apis)[ Packagist](https://packagist.org/packages/filippofinke/sms-apis)[ RSS](/packages/filippofinke-sms-apis/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

sms-apis
========

[](#sms-apis)

---

Introduction
------------

[](#introduction)

Simple library that allows the use of free-sms-receive sites through php. This library is modular, so it contains several websites of this type.

Getting started
---------------

[](#getting-started)

Clone the repository

`git clone https://github.com/filippofinke/sms-apis`

Run composer

`composer dumpautoload -o`

Use the library

```

```

See the examples [Examples folder](examples)

Create a module
---------------

[](#create-a-module)

Being this library modular you can create a specific module for any website of this kind. To create a module you need to create a class that implements the interface `Api\Modules\module`. After you have created the module and implemented all the methods of the interface you just have to move it into the modules folder.

Methods you must implement:

```
public function __construct();
public function getPhones();
public function getSms($phone, $limit);

```

Example

```
