PHPackages                             savannabits/movesms - 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. savannabits/movesms

ActiveLibrary[API Development](/categories/api)

savannabits/movesms
===================

PHP Laravel Adapter for fluently interacting with the Movetech Bulk SMS API

v1.0.0(4y ago)123MITPHPPHP ^7.4|^8.0|^8.1

Since Apr 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/savannabits/movesms)[ Packagist](https://packagist.org/packages/savannabits/movesms)[ Docs](https://github.com/savannabits/movesms)[ RSS](/packages/savannabits-movesms/feed)WikiDiscussions main Synced 4w ago

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

Laravel / PHP Movesms
=====================

[](#laravel--php-movesms)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b5deb14235fdf5c95b472a99b8e80657f70aefbf24916aa9569df5b5b267cc7c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736176616e6e61626974732f6d6f7665736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/savannabits/movesms)[![GitHub code size in bytes](https://camo.githubusercontent.com/ee9587821229646f946fb68da30da510b0935a8499c32f70b39491478ffff320/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f736176616e6e61626974732f6d6f7665736d73)](https://camo.githubusercontent.com/ee9587821229646f946fb68da30da510b0935a8499c32f70b39491478ffff320/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f736176616e6e61626974732f6d6f7665736d73)[![Travis (.com) Build](https://camo.githubusercontent.com/9638a45202c4bc7513ae04800842c67c2566254ea688e841cb43bd11cf8cc572/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f6d2f736176616e6e61626974732f6d6f7665736d732f6d61696e3f6c6162656c3d7472617669732d6369)](https://camo.githubusercontent.com/9638a45202c4bc7513ae04800842c67c2566254ea688e841cb43bd11cf8cc572/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f6d2f736176616e6e61626974732f6d6f7665736d732f6d61696e3f6c6162656c3d7472617669732d6369)[![Scrutinizer code quality](https://camo.githubusercontent.com/8a2ef3233f28839390787ed0f4443284b048494103866d321c2fbfb0e9f843d8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f7175616c6974792f672f736176616e6e61626974732f6d6f7665736d732f6d61696e)](https://camo.githubusercontent.com/8a2ef3233f28839390787ed0f4443284b048494103866d321c2fbfb0e9f843d8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f7175616c6974792f672f736176616e6e61626974732f6d6f7665736d732f6d61696e)[![Scrutinizer build ](https://camo.githubusercontent.com/90f3267acc94e12b3ec9f8337bae39e4cacb7fe619f0ea8963267733f78d895f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f6275696c642f672f736176616e6e61626974732f6d6f7665736d732f6d61696e3f6c6162656c3d73637275746e697a65722d6275696c64)](https://camo.githubusercontent.com/90f3267acc94e12b3ec9f8337bae39e4cacb7fe619f0ea8963267733f78d895f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f6275696c642f672f736176616e6e61626974732f6d6f7665736d732f6d61696e3f6c6162656c3d73637275746e697a65722d6275696c64)[![Total Downloads](https://camo.githubusercontent.com/14a6cb9a0118f534a92cfdaffe4a7a66f616a4783eaea6a71d11789d6bacf37a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736176616e6e61626974732f6d6f7665736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/savannabits/movesms)

The Laravel / PHP SDK for Movetech Solutions' Bulk SMS API (Movesms). See their [Bulk SMS API](https://developers.movesms.co.ke/start.html) for more details.

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

[](#installation)

You can install the package via composer:

```
composer require savannabits/movesms
```

Usage
-----

[](#usage)

### Required API Params:

[](#required-api-params)

- username - Your account Username
- api\_key - Your API Key
- sender - Your Sender ID
- to - Your Recipients separated by commas
- message - Your Text Message
- msgtype - Type of the message (use 5 for plain sms)
- dlr - Type of Delivery Report(use 0 for no delivery Report)

### Send Bulk SMS:

[](#send-bulk-sms)

```
$username = "YOUR MOVETECH USERNAME";
$senderId = "YOUR MOVETECH SENDER ID";
$apiKey = "YOUR MOVETECH API KEY";

$recipients = ["+254xxxxxx"]; //Array of recipient phone numbers in international format
$message = "Hello World! Here is my message.";

$res =  Savannabits\Movesms\Movesms::init($username,$apiKey, $senderId)
            ->to($recipients)
            ->message($message)
            ->send();

// Returns a php object with the following format:
$res = [
    "success" => true, //boolean
    "message" => "Message Sent:1701" // Or the error in case success = false
];
```

### Schedule SMS to send Later

[](#schedule-sms-to-send-later)

```
$scheduleAt = '2021-04-24 14:04:00'; // Time in the format Y-m-d H:i:s
$res =  Savannabits\Movesms\Movesms::init($username,$apiKey, $senderId)
            ->to($recipients)
            ->message($message)
            ->sendLater($scheduleAt);
```

### Check credit Balance

[](#check-credit-balance)

```
$res = Savannabits\Movesms\Movesms::checkBalance($apiKey);
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Sam Maosa](https://github.com/savannabits)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~286 days

Total

2

Last Release

1556d ago

Major Versions

v0.0.1 → v1.0.02022-02-02

PHP version history (2 changes)v0.0.1PHP ^7.2

v1.0.0PHP ^7.4|^8.0|^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/0c07613c8ab7356eb1d69752c0f2dc5802aeca61029ea8d3e6b9e58bfacee6af?d=identicon)[coolsam726](/maintainers/coolsam726)

---

Top Contributors

[![coolsam726](https://avatars.githubusercontent.com/u/5610289?v=4)](https://github.com/coolsam726 "coolsam726 (7 commits)")

---

Tags

bulk-smsbulksmsbulksms-apilaravelmovesmsmovetechphpsavannabitssdksavannabitsmovesms

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/savannabits-movesms/health.svg)

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M475](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M186](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M33](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M452](/packages/google-gax)

PHPackages © 2026

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