PHPackages                             naughton-and-ross/telstrasms - 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. naughton-and-ross/telstrasms

ActiveLibrary

naughton-and-ross/telstrasms
============================

telstraSMS is a PHP Implementation of the Telstra SMS API

1.2.0(10y ago)062MITPHP

Since Jul 2Pushed 10y ago2 watchersCompare

[ Source](https://github.com/naughton-and-ross/telstraSMS)[ Packagist](https://packagist.org/packages/naughton-and-ross/telstrasms)[ RSS](/packages/naughton-and-ross-telstrasms/feed)WikiDiscussions 0.0.1 Synced 2mo ago

READMEChangelog (3)DependenciesVersions (8)Used By (0)

telstraSMS
==========

[](#telstrasms)

[![Build Status](https://camo.githubusercontent.com/09262b7a9cafaf391522041556cc0bc7950ab491be16b2ece98e3248bb061389/68747470733a2f2f7472617669732d63692e6f72672f6b756261636f64652f74656c73747261534d532e7376673f6272616e63683d302e302e31)](https://travis-ci.org/kubacode/telstraSMS)

telstraSMS is a PHP package for the [Telstra SMS API](https://dev.telstra.com/content/sms-api-0).

The author is not affiliated with Telstra and Telstra is not involved in the development of this package in any way.

Install
-------

[](#install)

Via Composer

```
$ composer require kubacode/telstrasms
```

Laravel Configuration
---------------------

[](#laravel-configuration)

telstraSMS has optional support for Laravel and comes with a Service Provider and Facades for easy integration. The vendor/autoload.php is included by Laravel, so you don't have to require or autoload manually. Just see the instructions below.

After you have installed telstraSMS, open your Laravel config file config/app.php and add the following lines.

In the $providers array add the service providers for this package.

```
kubacode\telstraSMS\SMSServiceProvider::class,
```

Add the facade of this package to the $aliases array.

```
'SMS' => kubacode\telstraSMS\SMSFacade::class,
```

Now the SMS Class will be auto-loaded by Laravel.

You also need to supply your API Key &amp; API Secret in your .env environment file.

```
SMS_API_KEY=clientKey
SMS_API_SECRET=clientSecret

```

Usage
-----

[](#usage)

```
$clientKey = 'clientKey';
$clientSecret = 'clientSecret';
$to = '0400000000';
$body = 'SMS Message'
$message = new kubacode\telstraSMS\telstraSMS($clientKey, $clientSecret);
$message->send($to, $body);
```

Laravel Usage
-------------

[](#laravel-usage)

```
// usage inside a laravel route
Route::get('/', function()
{
    $message = SMS::send('0400000000', 'Test SMS');

    return $message->messageId;
});
```

Credits
-------

[](#credits)

- [Jacob Piers-Blundell](https://github.com/kubacode)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 90.5% 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 ~40 days

Recently: every ~0 days

Total

7

Last Release

3729d ago

Major Versions

0.0.1 → 1.1.02016-02-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/1f58453501c6620a08ba64bb388d7f229d7a32a67992efe8ed5c8488d2c574ad?d=identicon)[wngravette](/maintainers/wngravette)

---

Top Contributors

[![kubacode](https://avatars.githubusercontent.com/u/4929328?v=4)](https://github.com/kubacode "kubacode (38 commits)")[![wngravette](https://avatars.githubusercontent.com/u/7752331?v=4)](https://github.com/wngravette "wngravette (4 commits)")

### Embed Badge

![Health badge](/badges/naughton-and-ross-telstrasms/health.svg)

```
[![Health](https://phpackages.com/badges/naughton-and-ross-telstrasms/health.svg)](https://phpackages.com/packages/naughton-and-ross-telstrasms)
```

PHPackages © 2026

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