Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 28, 2024 via composer

laravel/slack-notification-channel v3.2.0

Slack Notification Channel for laravel.
Package summary
Share
2
issues
2
high severity
license
2
3
licenses
72
MIT
3
BSD-3-Clause
2
(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)
Package created
1 Dec 2018
Version published
15 Jan 2024
Maintainers
1
Total deps
77
Direct deps
4
License
MIT

Issues

2

2 high severity issues

high
Recommendation: Validate that the license expression complies with your license policy
via: illuminate/notifications@v11.5.0
Recommendation: Validate that the license expression complies with your license policy
via: illuminate/notifications@v11.5.0
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
72 Packages, Including:
brick/math@0.12.1
carbonphp/carbon-doctrine-types@3.2.0
dflydev/dot-access-data@v3.0.2
doctrine/inflector@2.0.10
doctrine/lexer@3.0.1
egulias/email-validator@4.0.2
fruitcake/php-cors@v1.3.0
guzzlehttp/guzzle@7.8.1
guzzlehttp/promises@2.0.2
guzzlehttp/psr7@2.6.2
guzzlehttp/uri-template@v1.0.3
illuminate/broadcasting@v11.5.0
illuminate/bus@v11.5.0
illuminate/collections@v11.5.0
illuminate/conditionable@v11.5.0
illuminate/console@v11.5.0
illuminate/container@v11.5.0
illuminate/contracts@v11.5.0
illuminate/database@v11.5.0
illuminate/events@v11.5.0
illuminate/filesystem@v11.5.0
illuminate/http@v11.5.0
illuminate/macroable@v11.5.0
illuminate/mail@v11.5.0
illuminate/notifications@v11.5.0
illuminate/pipeline@v11.5.0
illuminate/queue@v11.5.0
illuminate/session@v11.5.0
illuminate/support@v11.5.0
illuminate/view@v11.5.0
laravel/prompts@v0.1.20
laravel/serializable-closure@v1.3.3
laravel/slack-notification-channel@v3.2.0
nesbot/carbon@3.3.0
nunomaduro/termwind@v2.0.1
psr/clock@1.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/http-client@1.0.3
psr/http-factory@1.0.2
psr/log@3.0.0
psr/simple-cache@3.0.0
ralouphie/getallheaders@3.0.3
ramsey/collection@2.0.0
ramsey/uuid@4.7.6
symfony/clock@v7.0.5
symfony/console@v7.0.6
symfony/css-selector@v7.0.3
symfony/deprecation-contracts@v3.4.0
symfony/error-handler@v7.0.6

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
3 Packages, Including:
league/commonmark@2.4.2
league/config@v1.2.0
tijsverkoyen/css-to-inline-styles@v2.2.7

(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)

Expression
2 Packages, Including:
nette/schema@v1.3.0
nette/utils@v4.0.4
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of laravel/slack-notification-channel 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
guzzlehttp/guzzle7.8.1112.34 kBMIT
prod
illuminate/httpv11.5.0-MIT
prod
illuminate/notificationsv11.5.0-MIT
prod
2
illuminate/supportv11.5.0-MIT
prod

Visualizations

Frequently Asked Questions

What does laravel/slack-notification-channel do?

The laravel/slack-notification-channel is an open-source software package specifically designed for the Laravel framework. This handy tool enables the seamless integration of Slack notifications into your Laravel application. By utilizing this package, you can effortlessly send notifications to Slack channels, providing alerts and updates from your app in real-time. It's a perfect solution for enhancing your app's communication capabilities.

How do you use laravel/slack-notification-channel?

The use of laravel/slack-notification-channel involves a few steps. Firstly, you'll need to install the package via Composer with the command composer require laravel/slack-notification-channel. Then, in your Laravel notification class, make use of the Slack web hook URL to send messages to a desired Slack channel. Here is an example:

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Messages\SlackMessage;

class InvoicePaid extends Notification
{
    public function via($notifiable)
    {
        return ['slack'];
    }

    public function toSlack($notifiable)
    {
        return (new SlackMessage)
                    ->content('One of your invoices has been paid!');
    }
}

You can customize the Slack message content according to your preferences, allowing you to tailor messages to specific contexts and requirements. This Laravel package provides an intuitive and developer-friendly way to leverage the power of Slack's communication platform within your application.

Where are the laravel/slack-notification-channel docs?

You can find the official documentation for the Laravel Slack Notification Channel on the Laravel website. The direct link to the documentation is here. This comprehensive guide walks you through the installation process, usage examples, and tips for customizing your Slack notifications. It also includes troubleshooting help and info on how to contribute to the package's ongoing development. All users are encouraged to abide by the listed Code of Conduct to maintain a cooperative and constructive community.