PHPackages                             fahad-larasoft/tallbob - 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. fahad-larasoft/tallbob

ActiveLibrary

fahad-larasoft/tallbob
======================

It handles Tall Bob SMS API via simple Facade

01PHP

Since Aug 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/fahad-larasoft/laravel-tallbob)[ Packagist](https://packagist.org/packages/fahad-larasoft/tallbob)[ RSS](/packages/fahad-larasoft-tallbob/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Tall Bob Sms
============

[](#tall-bob-sms)

Laravel Package to send SMS/MMS using Tall Bob API

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

[](#installation)

Install via composer

```
composer require fahad-larasoft/tallbob
```

### Register Service Provider

[](#register-service-provider)

**Note! This and next step are optional if you use laravel&gt;=5.5 with package auto discovery feature.**

Add service provider to `config/app.php` in `providers` section

```
Larasoft\TallBobSms\ServiceProvider::class,
```

### Register Facade

[](#register-facade)

Register package facade in `config/app.php` in `aliases` section

```
Larasoft\TallBobSms\Facades\TallBobSms::class,
```

### Publish Configuration File

[](#publish-configuration-file)

```
php artisan vendor:publish --provider="Larasoft\TallBobSms\ServiceProvider" --tag="config"
```

When published, the `config/tallbobsms.php` config file contains:

```
return [
    /**
     * Sender Id to be sent with request
     */
    'sender_id' => env('TALLBOB_SENDER_ID', env('APP_NAME')),

    /**
     * API Username provided by Tall Bob for API
     */
    'api_username' => env('TALLBOB_API_USERNAME', ''),

    /**
     * API Key provided by Tall Bob for API
     */
    'api_key' => env('TALLBOB_API_KEY', ''),

    /**
     * To check if API is in test mode
     */
    'test_mode' => env('TALLBOB_TEST_MODE', false),
];
```

You can change it according to your needs.

Usage
-----

[](#usage)

- Send MMS

```
 TallBobSms::message($message)
            ->senderId($sender_id)
            ->number($mobile_number)    // with country code
            ->subject($subject)
            ->fileUrl($file_url)        // URL of file src
            ->sendMMS();
```

- Send SMS

```
 TallBobSms::message($message)
            ->senderId($sender_id)
            ->number($mobile_number)    // with country code
            ->send();
```

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Fahad Ali](https://www.linkedin.com/in/fahad3)
- [All Contributors](https://www.linkedin.com/in/fahad3/)

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity21

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://www.gravatar.com/avatar/2c6d2aa9343e69dcc4b87fcc83b1409af965f4d60ad2b086cfe04df5bed567a7?d=identicon)[fahad-larasoft-io](/maintainers/fahad-larasoft-io)

---

Top Contributors

[![larasoft-io](https://avatars.githubusercontent.com/u/8550617?v=4)](https://github.com/larasoft-io "larasoft-io (2 commits)")

### Embed Badge

![Health badge](/badges/fahad-larasoft-tallbob/health.svg)

```
[![Health](https://phpackages.com/badges/fahad-larasoft-tallbob/health.svg)](https://phpackages.com/packages/fahad-larasoft-tallbob)
```

PHPackages © 2026

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