PHPackages                             alexcrisbrito/culusms-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. alexcrisbrito/culusms-php

ActiveLibrary[API Development](/categories/api)

alexcrisbrito/culusms-php
=========================

Unofficial SDK for CuluSMS API

v1.0(5y ago)332MITPHPPHP &gt;=7.2

Since Apr 27Pushed 5y agoCompare

[ Source](https://github.com/alexcrisbrito/culusms-php)[ Packagist](https://packagist.org/packages/alexcrisbrito/culusms-php)[ RSS](/packages/alexcrisbrito-culusms-php/feed)WikiDiscussions master Synced 4d ago

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

\#CuluSMS-php

\###PHP Unofficial SDK for CuluSMS API

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

[](#installation)

###### Instalação

[](#instalação)

Via composer:

```
composer require alexcrisbrito/culusms-php
```

Documentation
-------------

[](#documentation)

###### Documentação

[](#documentação)

To use this SDK we need to get the API key from the CuluSMS and create an instance of the main class, here's how:

###### Para começar a usar este SDK, é preciso obter uma API key legítima apartir da sua conta da CuluSMS

[](#para-começar-a-usar-este-sdk-é-preciso-obter-uma-api-key-legítima-apartir-da-sua-conta-da-culusms)

```
require './vendor/autoload.php';

use alexcrisbrito\culusms\CuluSms;

$culu = new CuluSms("");
```

After this, we can access the API services like this:

```
$culu->messages->action();

$culu->address_book->action();

$culu->devices->action();
```

Each of those return an instance of a contract class, where you can execute all the actions you want to.

\###Examples #####Refer to the API to see the required and optional parameters

Send a message

```
$response = $culu->messages->send([
    "phone" => "+1 800 208 5331",
    "message" => "This is a test message.",
    //This is optional
    "priority" => 1,
    "device" => 1,
    "sim" => 1
]);

if ($response->isSuccess()) {
    var_dump($response->getData());
}
```

Create a contact

```
$response = $culu->address_book->create_contact([
    "name" => "Johnny Doe",
    "phone" => "+258844276077",
    "group" => 2
]);
```

Get a device info using their id

```
$response = $culu->devices->get_device(1);
```

### For the other actions for each of the API services just refer to the API Guide on CuluSMS official website

[](#for-the-other-actions-for-each-of-the-api-services-just-refer-to-the-api-guide-on-culusms-official-website)

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

[](#contributing)

You can contribute emailing me via  or via pull request.

Credits
-------

[](#credits)

- [Alexandre Brito](https://github.com/alexcrisbrito) (Developer)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/alexcrisbrito/culusms-php/blob/master/LICENSE) for more information.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

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

1844d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/75732812?v=4)[Alexandre Brito](/maintainers/alexcrisbrito)[@alexcrisbrito](https://github.com/alexcrisbrito)

---

Top Contributors

[![alexcrisbrito](https://avatars.githubusercontent.com/u/75732812?v=4)](https://github.com/alexcrisbrito "alexcrisbrito (1 commits)")

---

Tags

apiculusmsphpsmssms-api

### Embed Badge

![Health badge](/badges/alexcrisbrito-culusms-php/health.svg)

```
[![Health](https://phpackages.com/badges/alexcrisbrito-culusms-php/health.svg)](https://phpackages.com/packages/alexcrisbrito-culusms-php)
```

PHPackages © 2026

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