Skip to content

#️⃣ Slack notification for Laravel as it should be. Easy, fast, simple and highly testable.

License

Notifications You must be signed in to change notification settings

tigran-cl/laravel-slack

 
 

Repository files navigation

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

About

#️⃣ Slack notification for Laravel as it should be. Easy, fast, simple and highly testable.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%