PHPackages                             kubacode/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. [API Development](/categories/api)
4. /
5. kubacode/telstrasms

ActiveLibrary[API Development](/categories/api)

kubacode/telstrasms
===================

telstraSMS is a PHP Implementation of the Telstra SMS API

0.0.1(10y ago)41062[1 PRs](https://github.com/kubacode/telstraSMS/pulls)MITPHP

Since Jul 2Pushed 10y ago2 watchersCompare

[ Source](https://github.com/kubacode/telstraSMS)[ Packagist](https://packagist.org/packages/kubacode/telstrasms)[ RSS](/packages/kubacode-telstrasms/feed)WikiDiscussions 0.0.1 Synced 1w ago

READMEChangelogDependencies (1)Versions (3)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

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity54

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

Every ~0 days

Total

2

Last Release

3995d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/39db6c69fd23a3f652143cf7e752d59d639513e9d5ea14100c6dbe07cb1a89a7?d=identicon)[kubacode](/maintainers/kubacode)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/kubacode-telstrasms/health.svg)

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

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3751.2M45](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

1.9k496.1k32](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.3M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

232.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[aimeos/prisma

A powerful PHP package for integrating media related Large Language Models (LLMs) into your applications

1772.4k4](/packages/aimeos-prisma)

PHPackages © 2026

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