tigran-cl/laravel-slack

Forked laravel-slack.

1.0.6 2018-10-01 16:48 UTC

This package is not auto-updated.

Last update: 2024-05-12 03:43:51 UTC


README

68747470733a2f2f7365656b6c6f676f2e636f6d2f696d616765732f532f736c61636b2d6c6f676f2d444534343435303737432d7365656b6c6f676f2e636f6d2e706e6768747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e737667

Build Status codecov Latest Stable Version PHP from Packagist Laravel Version Total Downloads License
Based on illuminate/mail

About Laravel Slack

Slack notification for Laravel as it should be. Easy, fast, simple and highly testable. Since it uses On-Demand Notifications, it requires Laravel 5.5 or higher.

Installation

Require this package in your composer.json and update your dependencies:

composer require tigran-cl/laravel-slack

Since this package supports Laravel's Package Auto-Discovery you don't need to manually register the ServiceProvider.

After that, publish the configuration file:

php artisan vendor:publish --provider="Pressutto\LaravelSlack\ServiceProvider"

You're gonna need to configure an "Incoming Webhook" integration for your Slack team.

Configuration

The motivation for this fork is to allow pointing a channel to a webhook url. Instead of having just one SLACK_WEBHOOK_URL env variable, this package has an array in the config. Point your channel name to that channel's webhook url like so in laravel-slack.php (the published config file) :

    'slack_webhook_urls' => [
        '#channel1' => env('CHANNEL1_WEBHOOK_URL'),
        '#channel2' => env('CHANNEL2_WEBHOOK_URL')
    ]

So when you do \Slack::to('#channel1'), it will use the webhook URL you configured for it. For the original package see https://github.com/gpressutto5/laravel-slack