PHPackages                             strebl/inetworx-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. [HTTP &amp; Networking](/categories/http)
4. /
5. strebl/inetworx-client

ActiveLibrary[HTTP &amp; Networking](/categories/http)

strebl/inetworx-client
======================

Inetworx SMS API Client

v1.0.1(8y ago)092MITPHPPHP ^7.0

Since May 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/strebl/inetworx-client)[ Packagist](https://packagist.org/packages/strebl/inetworx-client)[ Docs](https://github.com/strebl/inetworx-client)[ RSS](/packages/strebl-inetworx-client/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (3)Used By (0)

Very short description of the package
=====================================

[](#very-short-description-of-the-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f22efb18e6494a4d0c1bd8816bfac23af74e4250d43fa7f6fb332b367624c458/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73747265626c2f696e6574776f72782d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/strebl/inetworx-client)[![Build Status](https://camo.githubusercontent.com/a401a250739e305a447fc334765e426bdbfd98cca16d1bc0e1844f85ba3c821e/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f73747265626c2f696e6574776f72782d636c69656e742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/strebl/inetworx-client)[![StyleCI](https://camo.githubusercontent.com/5f836b8ba0487d4061807681f8c15f268431b34b455ad4bf9ba946c261e77596/68747470733a2f2f7374796c6563692e696f2f7265706f732f39313039313034352f736869656c64)](https://styleci.io/repos/91091045)[![SensioLabsInsight](https://camo.githubusercontent.com/33b5574704a072fa9318175671ffe835bf76a4ca0ce9db42e6402d09e1d0be01/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f34363632663730372d313835642d343736652d613131302d3063333466656234313136392e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/4662f707-185d-476e-a110-0c34feb41169)[![Quality Score](https://camo.githubusercontent.com/79a7459286f2608cf75709fa0742a41d007115ab1c101ef9fa2abb8cbbf92ca9/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f73747265626c2f696e6574776f72782d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/strebl/inetworx-client)[![Total Downloads](https://camo.githubusercontent.com/0f53eef86ab0a1477f461858cbb1aa73553417663bd8d975cf0a6d29e3072b4c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73747265626c2f696e6574776f72782d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/strebl/inetworx-client)

This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.

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

[](#installation)

You can install the package via composer:

```
composer require strebl/inetworx-client
```

Laravel
-------

[](#laravel)

If you are using Laravel, you can register the service provider:

```
'providers' => [
    // ...
    Strebl\Inetworx\InetworxServiceProvider::class,
];
```

To publish the config file to `config/inetworx.php` run (optional):

```
php artisan vendor:publish --provider="Strebl\Inetworx\InetworxServiceProvider"
```

If you are using Laravel, you can register the service provider:

```
'aliases' => [
    // ...
    'Inetworx' => Strebl\Inetworx\InetworxFacade::class,
];
```

Set the environment variables with the correct values:

```
INETWORX_AUTH_HEADER_USERNAME=null
INETWORX_AUTH_HEADER_PASSWORD=null

INETWORX_API_USERNAME=null
INETWORX_API_PASSWORD=null

```

Usage
-----

[](#usage)

### With Laravel

[](#with-laravel)

```
$skeleton = app(Strebl\Inetworx::class);
$sms->send($phoneNumber, 'Hello, Manuel!', $senderPhoneNumber);
```

Or you can use the Facade:

```
\Inetworx::send($phoneNumber, 'Hello, Manuel!', $senderPhoneNumber);
```

### Without Laravel

[](#without-laravel)

```
$sms = new Strebl\Inetworx(
    $authHeaderUsername,
    $authHeaderPassword,
    $apiUsername,
    $apiPassword,
);
$sms->send($phoneNumber, 'Hello, Manuel!', $senderPhoneNumber);
```

### Send a SMS

[](#send-a-sms)

```
$sms->send($to, $message, $from);
```

### Get the remaining SMS credits

[](#get-the-remaining-sms-credits)

```
$sms->credit();
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Manuel Strebel](https://github.com/strebl)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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 ~2 days

Total

2

Last Release

3282d ago

PHP version history (2 changes)v1.0PHP ^7.1

v1.0.1PHP ^7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/88b33a36bab321756e8266b4db8866aaf78d3ced81e9fd896d427eb08a39097b?d=identicon)[strebl](/maintainers/strebl)

---

Top Contributors

[![strebl](https://avatars.githubusercontent.com/u/6151204?v=4)](https://github.com/strebl "strebl (20 commits)")

---

Tags

inetworxinetworx-client

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/strebl-inetworx-client/health.svg)

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

###  Alternatives

[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[omniphx/forrest

A Laravel library for Salesforce

2724.4M8](/packages/omniphx-forrest)[akamai-open/edgegrid-client

Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client\_Auth.html

482.5M6](/packages/akamai-open-edgegrid-client)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[onesignal/onesignal-php-api

A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com

34170.2k2](/packages/onesignal-onesignal-php-api)[ory/hydra-client-php

Documentation for all of Ory Hydra's APIs.

1710.8k](/packages/ory-hydra-client-php)

PHPackages © 2026

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