Looking to hire Laravel developers? Try LaraJobs

laravel-slack maintained by tigran-cl

Description
Forked laravel-slack.
Authors
Last update
2018/10/01 18:48 (dev-master)
License
Links
Downloads
1 502
Tags

Comments
comments powered by Disqus

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