PHPackages                             kreateyou/vumasms - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. kreateyou/vumasms

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

kreateyou/vumasms
=================

Send SMS

v0.0.2(6y ago)060MITPHP

Since Apr 18Pushed 6y agoCompare

[ Source](https://github.com/Kreateyou/vumasms)[ Packagist](https://packagist.org/packages/kreateyou/vumasms)[ RSS](/packages/kreateyou-vumasms/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

VUMASMS Client Library for PHP
==============================

[](#vumasms-client-library-for-php)

*This library requires a minimum PHP version of 5.6*

This is the PHP client library for use VumaSMS's API. To use this, you'll need a vumasms account. Sign up [for free at vumasms.com](https://www.vumasms.com/account/signup). This is currently a beta release, see [contributing](#contributing) for more information.

- [Installation](#installation)
- [Obtaining Api Keys](#obtaining-api-keys)
- [Usage](#usage)
- [Examples](#examples)
- [VumaSMS Laravel](#laravel)
- [Contributing](#contributing)

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

[](#installation)

To use the client library you'll need to have [created a VUMASMS account](https://www.vumasms.com/account/signup).

To install the PHP client library using Composer

```
composer require kreateyou/vumasms
```

Obtaining Api Keys
------------------

[](#obtaining-api-keys)

- Loggin to your [VumaSMS account](https://www.vumasms.com/account/login).
- Click on Setting on the left side menu
- Click on Generate API credentials button
- Save the Key and Secret on you app NOTE: vumaSMS will not store the api key or credentials it will generate new key every time please save the key for later use

Usage
-----

[](#usage)

If you're using composer, make sure the autoloader is included in your project's bootstrap file:

```
require_once "vendor/autoload.php";
```

Create a client with your API key and secret:

```
$client = new  \Vumasms\VumaSMS(API_KEY, API_SECRET);
```

Examples
--------

[](#examples)

### Sending A Message

[](#sending-a-message)

To use [VumaSMS's SMS API](#) to send an SMS message, call the `$client->send()` method.

The API can be called directly, using a simple array of parameters, the keys are as follows.

```
    to                // array of receipients
    sender            // registered sender ID, default VUMA
    message           // message
    scheduled_date    // date to be sent can be Datetime or Cron Expression
    scheduled_type    // date or cron
```

```
$messageBag = [
    'to' => [2547XXXXXX],
    'sender' => VUMA,
    'message' => 'Test message from the vumaSMS PHP Client'
];
$message = $client->send($messageBag);
```

The API response json data can be is as follows.

```
{"success":true,"details":{"type":"outbox","status":"queued","payload":{"to":["2547XXXXXX"],"message":"Your verification code for PROJECT is 3434  \n","sender":"VUMA","scheduled_date":null,"scheduled_type":null},"created_by":"17","scheduled_at":null,"updated_at":"2018-04-18 10:14:22","created_at":"2018-04-18 10:14:22","sid":"36"}};
```

Laravel
-------

[](#laravel)

To use the components in laravel 5.x Add the VumaSMS provider in your Providers

```
    Vumasms\Laravel\Providers\ServiceProvider::class,
```

Publish the Service provider as follow

```
  php artisan vendor:publish --provider "Vumasms\Laravel\Providers\ServiceProvider"
```

on your config folder locate the vumasms.php config change the key &amp; secret configuration if your are usine .env configuration add your keys and secret in your .env file as follows

```
       # VUMA SETTINGS
        VUMA_API_KEY=
        VUMA_API_SECRET=
```

To send SMS in laravel is as follows

```
    app("vumasms")->send($messageBag),
```

Contributing
------------

[](#contributing)

To contribute to the library, docs, or examples, \[create an issue\]\[issues\] or a pull request. Please only raise issues about features marked as working in the [API coverage](#API-Coverage) as the rest of the code is being updated.

License
-------

[](#license)

This library is released under the [MIT License](LICENSE.txt)

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~715 days

Total

2

Last Release

2280d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/37910250?v=4)[Elijah G](/maintainers/Kreateyou)[@Kreateyou](https://github.com/Kreateyou)

---

Top Contributors

[![vuma-tech](https://avatars.githubusercontent.com/u/86272048?v=4)](https://github.com/vuma-tech "vuma-tech (11 commits)")[![Kreateyou](https://avatars.githubusercontent.com/u/37910250?v=4)](https://github.com/Kreateyou "Kreateyou (1 commits)")

---

Tags

bulkbulksmsphpsmsvumavumasms

### Embed Badge

![Health badge](/badges/kreateyou-vumasms/health.svg)

```
[![Health](https://phpackages.com/badges/kreateyou-vumasms/health.svg)](https://phpackages.com/packages/kreateyou-vumasms)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

751284.3k37](/packages/civicrm-civicrm-core)[roundcube/roundcubemail

The Roundcube Webmail suite

7.0k1.4k3](/packages/roundcube-roundcubemail)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[nfse-nacional/nfse-php

This is my package nfse

1523.1k](/packages/nfse-nacional-nfse-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
