PHPackages                             joecampo/laravel-notification-basecamp - 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. joecampo/laravel-notification-basecamp

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

joecampo/laravel-notification-basecamp
======================================

Post notifications to Basecamp 3 Campfires

6.0.0(1y ago)68.1k↓50%1MITPHPPHP &gt;=7.2

Since Sep 3Pushed 1y ago1 watchersCompare

[ Source](https://github.com/joecampo/laravel-notification-basecamp)[ Packagist](https://packagist.org/packages/joecampo/laravel-notification-basecamp)[ Docs](https://github.com/joecampo/laravel-notification-channels)[ RSS](/packages/joecampo-laravel-notification-basecamp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (16)Used By (0)

laravel-notification-basecamp
=============================

[](#laravel-notification-basecamp)

Basecamp 3 Chatbot Campfire notification channel for Laravel.

[![Latest Version on Packagist](https://camo.githubusercontent.com/3b4b533b2a48d2d754bf1c84e219512552daad9f98721520cfd09b48d95afb2e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6f6563616d706f2f6c61726176656c2d6e6f74696669636174696f6e2d6261736563616d702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/joecampo/laravel-notification-basecamp)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/b8beeaee1ce052ef95cc40523b9f84ef1ac47d3390db414252527d00c6fed65c/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a6f6563616d706f2f6c61726176656c2d6e6f74696669636174696f6e2d6261736563616d702f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/joecampo/laravel-notification-basecamp)[![Total Downloads](https://camo.githubusercontent.com/7dd4d2d6844282a15ec8dad61f40da6b0b22c41323e29d9cda84b6bfba41f3b9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f6563616d706f2f6c61726176656c2d6e6f74696669636174696f6e2d6261736563616d702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/joecampo/laravel-notification-basecamp)

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

[](#installation)

You can install the package via composer:

```
composer require joecampo/laravel-notification-basecamp
```

Usage
-----

[](#usage)

Within a Laravel notification you can now use this as a channel for `via()`

```
use Illuminate\Notifications\Notification;
use NotificationChannels\Basecamp\CampfireChannel;
use NotificationChannels\Basecamp\CampfireMessage;

class ReviewCreated extends Notification
{
    public function via($notifiable)
    {
        return [CampfireChannel::class];
    }

    public function toCampfire($notifiable)
    {
        return CampfireMessage::create()->data('Hello from my chatbot 🤖');
    }
}
```

You'll need to implement a `routeNotificationForBasecamp` method on your notifiable model that returns the webhook URL provided by Basecamp 3 for your Chatbot. ([Setting up a Basecamp 3 Chatbot](https://m.signalvnoise.com/new-in-basecamp-3-chatbots/))

```
    public function routeNotificationForBasecamp()
    {
        return 'https://basecamp3.lvh.me';
    }
```

Messages
--------

[](#messages)

Basecamp allows Chatbots to post the following tags `table` `tr` `td` `th` `thead` `tbody` `details` `summary`. You may use the following standard HTML tags in rich text content: `div`, `h1`, `br`, `strong`, `em`, `strike`, `a` (with an href attribute), `pre`, `ol`, `ul`, `li`, and `blockquote`.

This package provides helpers for a simple message, and details/summary messages.

### Simple message

[](#simple-message)

```
 CampfireMessage::create()->data("It Doesn't Have To Be Crazy At Work");
```

### Summary w/ details

[](#summary-w-details)

The summary will show and the details will be hidden unless clicked. This is good for displaying messages that might have long stack traces etc.

```
CampfireMessage::create()
  ->summary('This is the text/markup used as the summary')
  ->details('This is the text/markup that is hidden unless clicked on in the UI');
```

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

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

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance43

Moderate activity, may be stable

Popularity29

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 84.4% 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 ~143 days

Recently: every ~278 days

Total

15

Last Release

448d ago

Major Versions

1.3.2 → 2.0.02021-03-18

2.0.1 → 3.0.02022-02-08

3.0.1 → 4.0.02023-02-14

4.0.0 → 5.0.02024-08-20

5.0.0 → 6.0.02025-02-24

### Community

Maintainers

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

---

Top Contributors

[![joecampo](https://avatars.githubusercontent.com/u/3619398?v=4)](https://github.com/joecampo "joecampo (27 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![emilsundberg](https://avatars.githubusercontent.com/u/215958?v=4)](https://github.com/emilsundberg "emilsundberg (1 commits)")[![jackwh](https://avatars.githubusercontent.com/u/627533?v=4)](https://github.com/jackwh "jackwh (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/joecampo-laravel-notification-basecamp/health.svg)

```
[![Health](https://phpackages.com/badges/joecampo-laravel-notification-basecamp/health.svg)](https://phpackages.com/packages/joecampo-laravel-notification-basecamp)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[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/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[laravel-notification-channels/aws-sns

Amazon Simple Notification Service (AWS SNS) notification channel for Laravel.

541.1M2](/packages/laravel-notification-channels-aws-sns)

PHPackages © 2026

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