PHPackages                             teleconcept/sms-client - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. teleconcept/sms-client

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

teleconcept/sms-client
======================

Teleconcept SMS Client

014PHP

Since Mar 12Pushed 5y ago1 watchersCompare

[ Source](https://github.com/TeleConcept-nl/sms-client)[ Packagist](https://packagist.org/packages/teleconcept/sms-client)[ RSS](/packages/teleconcept-sms-client/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#Create And Check Message

```
//Start creation
$client = new \Teleconcept\Sms\Client\Client('https://sms-api.teleconcept.nl');
$request = new \Teleconcept\Sms\Client\Request\Message\CreateRequest($client);

$request
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setRequiredParameters('This is a message', 'Sender name', ['0612345678'])
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135);

$response = $request->send();
$messages = $response->messages();
$message = $messages[0];

echo $message->reference(); // string uuidv4
echo $message->status(); // current status of the message
echo $message->originator(); // sender name
echo $message->recipient(); // recipient telephone number
echo $message->encoding(); // encoding
echo $message->body(); // the message
echo $message->scheduledAt(); // when will it be sent
echo $message->texts(); // number of credits used to send this message

```

```
$client = new \Teleconcept\Sms\Client\Client('https://sms-api.teleconcept.nl');
$request = new \Teleconcept\Sms\Client\Request\Message\CheckRequest($client);

$response = $request
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->setReference('b5638234-8623-42d0-8c8a-b91a50191788')
    ->send();

$message = $response->message();
echo $message->reference(); // string uuidv4
echo $message->status(); // current status of the message
echo $message->originator(); // sender name
echo $message->recipient(); // recipient telephone number
echo $message->encoding(); // encoding
echo $message->body(); // the message
echo $message->scheduledAt(); // when will it be sent
echo $message->texts(); // number of credits used to send this message

```

\#Check Credit

```
$client = new \Teleconcept\Sms\Client\Client('https://sms-api.teleconcept.nl');
$request = new \Teleconcept\Sms\Client\Request\Credit\CheckRequest($client);

$response = $request
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->send();

echo $response->total(); //All the credits you ever bought
echo $response->available(); //All the unspent credits you have left

$purchases = $response->purchases();
$purchase = $purchases[0];

echo $purchase->reference(); // reference of the purchase
echo $purchase->total(); // number of credits purchased
echo $purchase->available(); // number of unspent credits left
echo $purchase->createdAt(); // date and time of purchase

```

\#Check Pincode

```
$client = new \Teleconcept\Sms\Client\Client('https://sms-api.teleconcept.nl');
$request = new \Teleconcept\Sms\Client\Request\Pincode\CheckRequest($client);

$response = $request
    ->setRequiredParameters(154135, '3010', '31', '123456', 'HALLO')
    ->setAuthorization('40924ec10f3aaed662fe62aac', 154135)
    ->send();

echo $response->organizationId();
echo $response->reference();
echo $response->mobileOriginatorId();
echo $response->ipAddress();
echo $response->shortCode();
echo $response->keyword();
echo $response->pincode();
echo $response->createdAt();
echo $response->reportedAt();

```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/12224277?v=4)[TargetMedia](/maintainers/TargetMedia)[@targetmedia](https://github.com/targetmedia)

---

Top Contributors

[![steven-targetmedia](https://avatars.githubusercontent.com/u/68897484?v=4)](https://github.com/steven-targetmedia "steven-targetmedia (27 commits)")

### Embed Badge

![Health badge](/badges/teleconcept-sms-client/health.svg)

```
[![Health](https://phpackages.com/badges/teleconcept-sms-client/health.svg)](https://phpackages.com/packages/teleconcept-sms-client)
```

###  Alternatives

[wallabag/wallabag

open source self hostable read-it-later web application

12.6k2.2k](/packages/wallabag-wallabag)[dmishh/settings-bundle

Database centric Symfony configuration management. Global and per-user settings supported.

115254.9k1](/packages/dmishh-settings-bundle)[backstage/laravel-seo-scanner

The Laravel tool to boost the SEO score of your web pages.

2603.5k](/packages/backstage-laravel-seo-scanner)

PHPackages © 2026

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