PHPackages                             messagecloud/send-api-php - 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. messagecloud/send-api-php

ActiveLibrary[API Development](/categories/api)

messagecloud/send-api-php
=========================

The MessageCloud Send API client for PHP

1.0.0(2y ago)04[1 PRs](https://github.com/MessageCloud/send-api-php/pulls)BSD-2-ClausePHPPHP ^8.1

Since Aug 18Pushed 1y ago1 watchersCompare

[ Source](https://github.com/MessageCloud/send-api-php)[ Packagist](https://packagist.org/packages/messagecloud/send-api-php)[ RSS](/packages/messagecloud-send-api-php/feed)WikiDiscussions main Synced 1mo ago

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

MessageCloud Send PHP SDK
=========================

[](#messagecloud-send-php-sdk)

The MessageCloud Send PHP SDK provides a convenient way to interact with the MessageCloud Send API for sending SMS messages.

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

[](#installation)

To use the MessageCloud Send PHP SDK in your project, follow these steps:

Install Composer if you haven't already:

```
curl -sS https://getcomposer.org/installer | php

mv composer.phar /usr/local/bin/composer
```

Create a composer.json file in your project directory and add the following dependency:

```
{
    "require": {
        "messagecloud/send-api-php": "^1.0"
    }
}
```

Run Composer to install the dependencies:

```
composer install
```

If you already have composer in your project then it's as simple as this:

```
composer require messagecloud/send-api-php
```

Authentication
--------------

[](#authentication)

To use the SDK, you need to create an instance of the Authentication class with your username and password:

```
use MessageCloud\Send\Authentication;

$authentication = new Authentication('your-username', 'your-password');
```

Sending SMS
-----------

[](#sending-sms)

To send an SMS message using the SDK, create an instance of the Sms class and pass the required parameters:

```
use MessageCloud\Send\Sms;

$message = new Sms('1234567890', 'sender', 'Hello, world!');
```

Then, create an instance of the Client class and send the SMS:

```
use MessageCloud\Send\Client;

$client = new Client($authentication);
$response = $client->send($message);

if ($response->wasSuccessful()) {
    echo "SMS sent successfully. ID: " . $response->getId();
} else {
    echo "Failed to send SMS. Status: " . $response->getStatus();
}
```

Running Tests
-------------

[](#running-tests)

To run unit tests for the SDK, you can use PHPUnit. Make sure you have PHPUnit installed:

```
composer require --dev phpunit/phpunit
```

Then, you can run the tests:

```
vendor/bin/phpunit
```

Code Quality Checks
-------------------

[](#code-quality-checks)

This project uses PHPStan and PHP CS Fixer for code quality checks. You can run them using the following commands:

To analyze code with PHPStan:

```
vendor/bin/phpstan analyse
```

To fix coding standards violations with PHP CS Fixer:

```
vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation
```

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

[](#contributing)

If you find a bug or would like to contribute to this SDK, feel free to open an issue or submit a pull request.

License
-------

[](#license)

This SDK is open-source software licensed under the BSD-2-Clause License. See the LICENSE file for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

1004d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2050d696a456aef23e9b0cb6b49e71e1a8ee0f1f99fa24f965b8d7305bf1de3a?d=identicon)[marcoleary](/maintainers/marcoleary)

---

Top Contributors

[![marcoleary](https://avatars.githubusercontent.com/u/3300320?v=4)](https://github.com/marcoleary "marcoleary (6 commits)")

---

Tags

smssms-apisms-clientsms-gatewaysms-messages

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/messagecloud-send-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/messagecloud-send-api-php/health.svg)](https://phpackages.com/packages/messagecloud-send-api-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

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

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

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

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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