All Projects → wow-apps → symfony-slack-bot

wow-apps / symfony-slack-bot

Licence: MIT license
Modern and simple bundle for sending customizable messages to Slack via incoming web-hooks for Symfony 3 and 4

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to symfony-slack-bot

Botonomous
A PHP Framework For Creating Autonomous Slack Bots
Stars: ✭ 109 (+419.05%)
Mutual labels:  slackbot
Go Sarah
Simple yet customizable bot framework written in Go.
Stars: ✭ 188 (+795.24%)
Mutual labels:  slackbot
walkiebot
walkiebot opensource
Stars: ✭ 42 (+100%)
Mutual labels:  slackbot
Slack Block Builder
Lightweight, no-dependency JavaScript library for creating Slack Block Kit UIs, with a builder syntax, inspired by SwiftUI.
Stars: ✭ 129 (+514.29%)
Mutual labels:  slackbot
Chatskills
Run and debug Alexa skills on the command-line. Create bots. Run them in Slack. Run them anywhere!
Stars: ✭ 171 (+714.29%)
Mutual labels:  slackbot
Slack Ruby Bot Server
A library that enables you to write a complete Slack bot service with Slack button integration, in Ruby.
Stars: ✭ 225 (+971.43%)
Mutual labels:  slackbot
Slack Machine
A sexy, simple, yet powerful and extendable Slack bot
Stars: ✭ 91 (+333.33%)
Mutual labels:  slackbot
slacking
Modern Slack C++ 11 library for communicating with the Web Slack API
Stars: ✭ 58 (+176.19%)
Mutual labels:  slackbot
Knary
A simple HTTP(S) and DNS Canary bot with Slack/Discord/MS Teams & Pushover support
Stars: ✭ 187 (+790.48%)
Mutual labels:  slackbot
slackify
Build Slackbot on Rails using Slack Event API
Stars: ✭ 20 (-4.76%)
Mutual labels:  slackbot
Slackbotapi
node.js Slack RTM API module
Stars: ✭ 135 (+542.86%)
Mutual labels:  slackbot
Fantasy football chat bot
GroupMe Discord and Slack Chatbot for ESPN Fantasy Football
Stars: ✭ 166 (+690.48%)
Mutual labels:  slackbot
Awesome Bots
The most awesome list about bots ⭐️🤖
Stars: ✭ 2,864 (+13538.1%)
Mutual labels:  slackbot
Hanu
Golang Framework for writing Slack bots
Stars: ✭ 128 (+509.52%)
Mutual labels:  slackbot
slack-metabot
Extract metadata (EXIF) from uploaded files on Slack
Stars: ✭ 15 (-28.57%)
Mutual labels:  slackbot
Facebot
Slackbot for facebook messaging integration in slack
Stars: ✭ 91 (+333.33%)
Mutual labels:  slackbot
Sactive Bot
😈 An extensible chat bot framework. sactive-bot is an evolution of the open source hubot project. - https://www.shipengqi.top/sactive-bot .
Stars: ✭ 212 (+909.52%)
Mutual labels:  slackbot
cloud-functions
OpenFaaS social functions
Stars: ✭ 27 (+28.57%)
Mutual labels:  slackbot
on-demand-delivery-fastlane-slack
iOS On-Demand delivery architecture via slack/jenkins/fastlane. Demo project for: #PragmaConf2019
Stars: ✭ 18 (-14.29%)
Mutual labels:  slackbot
coalibot
Slack bot for the school 42 using nlopes/slack Slack api client. This bot provide tools for student to access school informations.
Stars: ✭ 22 (+4.76%)
Mutual labels:  slackbot

SlackBot banner

SensioLabsInsight

Packagist version Packagist Downloads

Maintainability Codacy Badge Scrutinizer Code Quality

Travis CI Build Scrutinizer Build ContinuousPHP Build

Code Coverage

Version 5 is coming this November. It will require PHP 7.1 and support Symfony 4 and 5 (Symfony 3 users can stay on version 4 of bundle)

Symfony Slack Bot

Simple Symfony 3 and 4 Bundle for sending customizable messages to Slack via incoming webhooks.

Requires:

  • PHP 7.0+
  • Symfony 3.0+
  • Guzzle Client 6.0+

Installation:

Step 1: Download the Bundle

"require": {
        "wow-apps/symfony-slack-bot": "^4.0"
}

or

$ composer require wow-apps/symfony-slack-bot 

Step 2: Enable the Bundle (skip for Symfony 4)

// ./app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new WowApps\SlackBundle\WowAppsSlackBundle(),
    );

    // ...

    return $bundles
}

Step 3: Add configuration (skip for Symfony 4)

# SlackBot Configuration
services:
    # SlackBot Configuration
    wow_apps_slack:
        api_url: "%env(WOW_APPS_SLACK_BOT_API_URL)%"
        default_icon_url: "https://wow-apps.github.io/symfony-slack-bot/public/message-icon.png"
        default_channel: "general"
        default_username: "wow-apps/symfony-slack-bot"
        default_fallback: "Can't display attachment in plain-text mode"
        colors:
            default: "#607D8B"
            info: "#2196F3"
            warning: "#FF5722"
            success: "#8BC34A"
            danger: "#F44336"
        templates:
            exception:
                username: "Exception"
                channel: "general"
                icon: "https://wow-apps.github.io/symfony-slack-bot/public/exception-icon.png"

see more about override default parameters

Send test message:

To test your configuration, send test message by next command:

./bin/console wowapps:slackbot:test

Test command result preview

Documentation

  • Actual version 4.x
  • Unmaintained version 3.x

News and updates

Follow news and updates in my Telegram channel @wow_apps_pro or Twitter @alexey_samara_

Say thanks

I don't ask for donates, I do what I do for free, for all development community. But I will be grateful if you inform me on the email in which project you are using this Bundle, as well as I will be glad to criticize and suggestions.

e-mail

License

MIT © 2016 - 2019 Alexey Samara & contributors

Contribute

Do you want to make a change? Pull requests are welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].