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

Commit 3d7b35b

Browse files
committed
Fix symfony 2.8 support
1 parent a1024c6 commit 3d7b35b

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
SlackBundle unplanned
1+
SlackBundle v2.4.1
2+
==================
3+
- FIX: Symfony 2.8 support was defect by removed classes in services.yml
4+
5+
SlackBundle v2.4.0
26
==================
37
- Feature: Commands compatible to Symfony 3.4 (by @alister)
48
- (NOT BC) Feature: Remove old command prefixes (see v1.3) (by @alister)
59
- Patch: removed different typos (by @alister)
6-
SlackBundle v2.4.0
7-
==================
8-
- Feature: Support for more fields in attachments and additional client options for Messaging::message() (by @pmishev=
10+
- Feature: Support for more fields in attachments and additional client options for Messaging::message() (by @pmishev)
911
- Support for Symfony 4.0
1012

1113
SlackBundle v2.3.0

Resources/config/services.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,31 @@ services:
2929
arguments: ["@dz.slack.client"]
3030

3131
DZunke\SlackBundle\Command\BotMessagingCommand:
32+
class: DZunke\SlackBundle\Command\BotMessagingCommand
3233
arguments: ["@dz.slack.channels", "@event_dispatcher"]
3334
tags:
3435
- { name: console.command, command: slack:run-bot }
3536

3637
DZunke\SlackBundle\Command\ChangeChannelsTopicCommand:
38+
class: DZunke\SlackBundle\Command\ChangeChannelsTopicCommand
3739
arguments: ["@dz.slack.channels"]
3840
tags:
3941
- { name: console.command, command: slack:channels:topic }
4042

4143
DZunke\SlackBundle\Command\DebugCommand:
44+
class: DZunke\SlackBundle\Command\DebugCommand
4245
arguments: ["@dz.slack.client"]
4346
tags:
4447
- { name: console.command, command: slack:debug }
4548

4649
DZunke\SlackBundle\Command\MessageCommand:
50+
class: DZunke\SlackBundle\Command\MessageCommand
4751
arguments: ["@dz.slack.messaging"]
4852
tags:
4953
- { name: console.command, command: slack:message }
5054

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

0 commit comments

Comments
 (0)