Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
Fix symfony 2.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DZunke committed Sep 27, 2018
1 parent a1024c6 commit 3d7b35b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
SlackBundle unplanned
SlackBundle v2.4.1
==================
- FIX: Symfony 2.8 support was defect by removed classes in services.yml

SlackBundle v2.4.0
==================
- Feature: Commands compatible to Symfony 3.4 (by @alister)
- (NOT BC) Feature: Remove old command prefixes (see v1.3) (by @alister)
- Patch: removed different typos (by @alister)
SlackBundle v2.4.0
==================
- Feature: Support for more fields in attachments and additional client options for Messaging::message() (by @pmishev=
- Feature: Support for more fields in attachments and additional client options for Messaging::message() (by @pmishev)
- Support for Symfony 4.0

SlackBundle v2.3.0
Expand Down
5 changes: 5 additions & 0 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,31 @@ services:
arguments: ["@dz.slack.client"]

DZunke\SlackBundle\Command\BotMessagingCommand:
class: DZunke\SlackBundle\Command\BotMessagingCommand
arguments: ["@dz.slack.channels", "@event_dispatcher"]
tags:
- { name: console.command, command: slack:run-bot }

DZunke\SlackBundle\Command\ChangeChannelsTopicCommand:
class: DZunke\SlackBundle\Command\ChangeChannelsTopicCommand
arguments: ["@dz.slack.channels"]
tags:
- { name: console.command, command: slack:channels:topic }

DZunke\SlackBundle\Command\DebugCommand:
class: DZunke\SlackBundle\Command\DebugCommand
arguments: ["@dz.slack.client"]
tags:
- { name: console.command, command: slack:debug }

DZunke\SlackBundle\Command\MessageCommand:
class: DZunke\SlackBundle\Command\MessageCommand
arguments: ["@dz.slack.messaging"]
tags:
- { name: console.command, command: slack:message }

DZunke\SlackBundle\Command\UsersCommand:
class: DZunke\SlackBundle\Command\UsersCommand
arguments: ["@dz.slack.users"]
tags:
- { name: console.command, command: slack:users }

0 comments on commit 3d7b35b

Please sign in to comment.