PHPackages                             mollsoft/goip-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. mollsoft/goip-client

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

mollsoft/goip-client
====================

GoIP Client library PHP

v1.0.0(1y ago)061MITPHPPHP ^8.0

Since May 8Pushed 1y ago1 watchersCompare

[ Source](https://github.com/mollsoft/goip-client)[ Packagist](https://packagist.org/packages/mollsoft/goip-client)[ RSS](/packages/mollsoft-goip-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

GoIP Parser Wrapper in PHP
==========================

[](#goip-parser-wrapper-in-php)

Requirements
============

[](#requirements)

- PHP 8.0 or more
- Composer
- GuzzleHTTP

Composer
========

[](#composer)

```
composer require mollsoft/goip-client
```

Examples
========

[](#examples)

### Authorization

[](#authorization)

```
$baseURI = 'http://.../goip';
$login = 'root';
$password = '...';

$client = new \MollSoft\GoipClient\GoipClient($baseURI, $login, $password);
```

### Get GoIP list

[](#get-goip-list)

```
$goipList = $client->goipList();

/** @var \MollSoft\GoipClient\Entities\GoipItem $item */
foreach( $goipList as $item ) {
    print_r($item);
}
```

### Get inbox sms messages

[](#get-inbox-sms-messages)

```
$inboxSMSList = $client->inboxSMS();

/** @var \MollSoft\GoipClient\Entities\InboxSMSItem $item */
foreach( $inboxSMSList as $item ) {
    print_r($item);
}
```

### Get USSD-requests

[](#get-ussd-requests)

```
$ussdList = $client->ussdList();

/** @var \MollSoft\GoipClient\Entities\USSDItem $item */
foreach( $ussdList as $item ) {
    print_r($item);
}
```

### Send USSD and get answer

[](#send-ussd-and-get-answer)

```
$command = '*100#';
$goipList = $client->goipList();

/** @var \MollSoft\GoipClient\Entities\GoipItem $item */
foreach( $goipList as $item ) {
    $answer = $client->ussd($item->termId, $command, true);
    echo "GoIP Terminal {$item->termId}: $answer\n";
}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance49

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity42

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

Unknown

Total

1

Last Release

375d ago

### Community

Maintainers

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

---

Top Contributors

[![danajwright](https://avatars.githubusercontent.com/u/4512490?v=4)](https://github.com/danajwright "danajwright (1 commits)")

### Embed Badge

![Health badge](/badges/mollsoft-goip-client/health.svg)

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

###  Alternatives

[ashallendesign/favicon-fetcher

A Laravel package for fetching website's favicons.

190272.4k3](/packages/ashallendesign-favicon-fetcher)[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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