PHPackages                             abreeden/transmitsms-api - 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. abreeden/transmitsms-api

ActiveLibrary

abreeden/transmitsms-api
========================

Provides support for SMS providers using the TransmitSMS backend and pacakges the existing PHP class file as a composer package

0883[1 issues](https://github.com/abreeden/transmitsms-api/issues)PHP

Since Feb 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/abreeden/transmitsms-api)[ Packagist](https://packagist.org/packages/abreeden/transmitsms-api)[ RSS](/packages/abreeden-transmitsms-api/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependenciesVersions (1)Used By (0)

TransmitSMS-API for Laravel
---------------------------

[](#transmitsms-api-for-laravel)

Provides an implementation for the TransmitSMS-API as used by BurstSMS (burstsms.com.au)

Original class was developed by BurstSMS and packaged by abreeden for use in Laravel 4. This package have been update for **Laravel 5**.

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

[](#installation)

Once you have installed this package, you will need to add the service provider to the `providers` array in `app.php` config file:

```
Abreeden\TransmitsmsApi\TransmitsmsApiServiceProvider

```

or

```
Abreeden\TransmitsmsApi\TransmitsmsApiServiceProvider::class

```

Next, you may want to add the TransmitSMS facade. To do that, you will need to add under the `aliases` array, also in the `app.php` config file:

```
'TransmitSMS' => Abreeden\TransmitsmsApi\Facades\TransmitsmsApiFacade

```

or

```
'TransmitSMS' => Abreeden\TransmitsmsApi\Facades\TransmitsmsApiFacade::class

```

Finally, you will need to publish the config file using the following command:

```
$ php artisan vendor:publish --provider="Abreeden\TransmitsmsApi\TransmitsmsApiServiceProvider"

```

**Remember to set your API and secret keys in the config file or .env file!**

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

[](#documentation)

To send a message you will require an account with a provider using the TransmitSMS API such as BurstSMS. Use the following syntax to initialise and send a message in Laravel 5.

Without facade:

```
$sms = new \Abreeden\TransmitsmsApi\TransmitsmsApi("API_KEY", "SECRET");
$result = $sms->sendSms("Message goes here", "Destination Number", "From");

```

With facade:

```
$result = \TransmitSMS::sendSms("Message goes here", "Destination Number", "From");

```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 Bus Factor1

Top contributor holds 71.4% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/ffb89dbd40af87c50d2ff3d7eef8ed8b4722280b2923377bd9a659afddc6c96f?d=identicon)[abreeden](/maintainers/abreeden)

---

Top Contributors

[![abreeden](https://avatars.githubusercontent.com/u/8678640?v=4)](https://github.com/abreeden "abreeden (5 commits)")[![changhuapeng](https://avatars.githubusercontent.com/u/9205678?v=4)](https://github.com/changhuapeng "changhuapeng (2 commits)")

### Embed Badge

![Health badge](/badges/abreeden-transmitsms-api/health.svg)

```
[![Health](https://phpackages.com/badges/abreeden-transmitsms-api/health.svg)](https://phpackages.com/packages/abreeden-transmitsms-api)
```

PHPackages © 2026

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