Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Bluesky Notification Channel Laravel Package

spatie/laravel-bluesky-notification-channel

Laravel notification channel for Bluesky (spatie/laravel-bluesky-notification-channel). Send posts via Laravel’s notification system using a simple BlueskyPost builder; automatically detects links, mentions, and hashtags and renders rich text.

View on GitHub
Deep Wiki
Context7

Send Bluesky notifications in Laravel

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package makes it easy to send notifications to Bluesky using Laravel's notification system. Links, mentions and hashtags are automatically detected and rendered as rich text.

Here's how you can use it:

BlueskyPost::make()
    ->text('Hello from Laravel! Check out https://spatie.be')
    ->language('en');

In a notification:

<?php

use Illuminate\Notifications\Notification;
use Spatie\BlueskyNotificationChannel\BlueskyChannel;
use Spatie\BlueskyNotificationChannel\BlueskyPost;

class ServerDownNotification extends Notification
{
    public function via($notifiable): array
    {
        return [BlueskyChannel::class];
    }

    public function toBluesky($notifiable): BlueskyPost
    {
        return BlueskyPost::make()
            ->text("Our server {$this->server->name} is down!");
    }
}

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/laravel-bluesky-notification-channel

Add your Bluesky credentials to config/services.php:

'bluesky' => [
    'username' => env('BLUESKY_USERNAME'),
    'password' => env('BLUESKY_PASSWORD'),
],

Usage

Creating posts

You can create a post using the BlueskyPost class:

BlueskyPost::make()
    ->text('Hello, Bluesky!')
    ->language('en');

Rich text

The package automatically detects links, mentions (@handle.bsky.social) and hashtags (#topic) in your post text and converts them to rich text facets.

Embeds

Link embeds (cards with title, description and thumbnail) are automatically resolved from the first link in your post. You can also specify an embed URL explicitly:

BlueskyPost::make()
    ->text('Check this out!')
    ->embedUrl('https://spatie.be')

If you want to disable automatic embed resolution, call withoutAutomaticEmbeds():

BlueskyPost::make()
    ->text('https://spatie.be')
    ->withoutAutomaticEmbeds()

Using the service directly

You can also send posts without using notifications by resolving the BlueskyService from the container:

use Spatie\BlueskyNotificationChannel\BlueskyService;

app(BlueskyService::class)->createPost('Hello, Bluesky!');

Customization

You can swap out the default implementations by binding your own classes in a service provider:

use Spatie\BlueskyNotificationChannel\Facets\FacetsResolver;
use Spatie\BlueskyNotificationChannel\Embeds\EmbedResolver;
use Spatie\BlueskyNotificationChannel\IdentityRepository\IdentityRepository;

$this->app->singleton(FacetsResolver::class, MyCustomFacetsResolver::class);
$this->app->singleton(EmbedResolver::class, MyCustomEmbedResolver::class);
$this->app->singleton(IdentityRepository::class, MyCustomIdentityRepository::class);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

This package is a fork of innocenzi/bluesky-notification-channel by Enzo Innocenzi.

License

The MIT License (MIT). Please see License File for more information.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
christhompsontldr/phpsdk
enqueue/dsn
bunny/bunny
enqueue/test
enqueue/null
enqueue/amqp-tools
milesj/emojibase
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport