PHPackages                             itsmurumba/laravel-hostpinnacle - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. itsmurumba/laravel-hostpinnacle

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

itsmurumba/laravel-hostpinnacle
===============================

Laravel Package for Hostpinnacle SMS API

v0.0.5(2mo ago)41.0k1MITPHPPHP ^7.1|^8.0|^8.1|^8.2|^8.3

Since Mar 2Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/ItsMurumba/laravel-hostpinnacle)[ Packagist](https://packagist.org/packages/itsmurumba/laravel-hostpinnacle)[ RSS](/packages/itsmurumba-laravel-hostpinnacle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (5)Versions (9)Used By (0)

Laravel Hostpinnacle
====================

[](#laravel-hostpinnacle)

Official Laravel package for the **Hostpinnacle SMS API**. Quick SMS, Group SMS, and File Upload — with optional **SaaS multi-account** support.

Quick start
-----------

[](#quick-start)

```
composer require itsmurumba/laravel-hostpinnacle
```

```
php artisan hostpinnacle:install
```

Add to `.env`:

```
HOSTPINNACLE_API_KEY=your-api-key
HOSTPINNACLE_SENDER_ID=your-sender-id
HOSTPINNACLE_LOGIN_USERNAME=your-username
HOSTPINNACLE_LOGIN_PASSWORD=your-password
HOSTPINNACLE_BASE_URL=https://smsportal.hostpinnacle.co.ke/SMSApi
```

Send SMS:

```
use Itsmurumba\Hostpinnacle\Facades\Hostpinnacle;

$response = Hostpinnacle::sendQuickSMS([
    'mobile' => '254720xxxxxx',
    'msg' => 'Hello World!',
]);
```

Testing the package locally (before publishing)
-----------------------------------------------

[](#testing-the-package-locally-before-publishing)

To try the package in a real Laravel app without publishing to Packagist:

**1. Path repository (recommended)** — In your Laravel app’s `composer.json` add a path repo and require the package:

```
{
    "repositories": [
        {
            "type": "path",
            "url": "/path/to/laravel-hostpinnacle"
        }
    ],
    "require": {
        "itsmurumba/laravel-hostpinnacle": "@dev"
    }
}
```

Then run `composer update`, add your Hostpinnacle env vars, and use the package as normal (e.g. `Hostpinnacle::sendQuickSMS(...)`). Changes in the package folder are used immediately (no re-publish).

**2. From a Git branch** — To test the install as users will (from GitHub), push your branch and in the app use:

```
{
    "repositories": [{"type": "vcs", "url": "https://github.com/ItsMurumba/laravel-hostpinnacle"}],
    "require": {
        "itsmurumba/laravel-hostpinnacle": "dev-feature/saas-multi-account"
    }
}
```

Replace the branch name with yours. Run `composer update` in the app. Good for checking that `composer.json` and the repo are correct before a public release.

Documentation
-------------

[](#documentation)

Full documentation (installation, configuration, usage, SaaS multi-account, testing, config reference) is built with [VitePress](https://vitepress.dev/) and lives in the **`docs/`** folder.

- **Local:** Run `npm install` then `npm run docs:dev` and open .
- **Build:** `npm run docs:build` — output in `docs/.vitepress/dist/` (suitable for GitHub Pages or any static host).

For GitHub Pages (project site), set `base: '/laravel-hostpinnacle/'` in `docs/.vitepress/config.mts` before building. For a custom domain, keep `base: '/'`.

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

[](#contributing)

Contributions are welcome. Please read [Contribution.md](Contribution.md) before submitting PRs or issues.

License
-------

[](#license)

MIT. See [LICENSE](LICENSE) for details.

###  Health Score

45

—

FairBetter than 92% of packages

Maintenance84

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

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

Total

5

Last Release

82d ago

PHP version history (4 changes)v0.0.1PHP ^7.1|^8.0

v0.0.2PHP ^7.1|^8.0|^8.1

v0.0.3PHP ^7.1|^8.0|^8.1|^8.2

v0.0.4PHP ^7.1|^8.0|^8.1|^8.2|^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/53953afbbecd70ed72b7b0f564e1ef0c44f55b4a1c81535402bc7de8dc3ad078?d=identicon)[ItsMurumba](/maintainers/ItsMurumba)

---

Top Contributors

[![ItsMurumba](https://avatars.githubusercontent.com/u/16638199?v=4)](https://github.com/ItsMurumba "ItsMurumba (74 commits)")

---

Tags

bulksmshostpinnaclelaravel-hostpinnaclesafaricomlaravelitsmurumbahostpinnacle

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/itsmurumba-laravel-hostpinnacle/health.svg)

```
[![Health](https://phpackages.com/badges/itsmurumba-laravel-hostpinnacle/health.svg)](https://phpackages.com/packages/itsmurumba-laravel-hostpinnacle)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10138.4k](/packages/gr8shivam-laravel-sms-api)

PHPackages © 2026

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