This repository was archived by the owner on Jul 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ SlackBundle unplanned
3
3
- Feature: Commands compatible to Symfony 3.4 (by @alister)
4
4
- (NOT BC) Feature: Remove old command prefixes (see v1.3) (by @alister)
5
5
- 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=
9
+ - Support for Symfony 4.0
6
10
7
11
SlackBundle v2.3.0
8
12
==================
Original file line number Diff line number Diff line change @@ -2,24 +2,30 @@ services:
2
2
3
3
dz.slack.identity_bag :
4
4
class : DZunke\SlackBundle\Slack\Messaging\IdentityBag
5
+ public : true
5
6
6
7
dz.slack.connection :
7
8
class : DZunke\SlackBundle\Slack\Client\Connection
9
+ public : true
8
10
9
11
dz.slack.client :
10
12
class : DZunke\SlackBundle\Slack\Client
13
+ public : true
11
14
arguments : ["@dz.slack.connection"]
12
15
13
16
dz.slack.messaging :
14
17
class : DZunke\SlackBundle\Slack\Messaging
18
+ public : true
15
19
arguments : ["@dz.slack.client", "@dz.slack.identity_bag"]
16
20
17
21
dz.slack.channels :
18
22
class : DZunke\SlackBundle\Slack\Channels
23
+ public : true
19
24
arguments : ["@dz.slack.client"]
20
25
21
26
dz.slack.users :
22
27
class : DZunke\SlackBundle\Slack\Users
28
+ public : true
23
29
arguments : ["@dz.slack.client"]
24
30
25
31
DZunke\SlackBundle\Command\BotMessagingCommand :
Original file line number Diff line number Diff line change 16
16
},
17
17
"require" : {
18
18
"php" : " >=5.6" ,
19
- "symfony/symfony" : " ~2.8|~3.0" ,
19
+ "symfony/symfony" : " ~2.8|~3.0|~4.0 " ,
20
20
"guzzlehttp/guzzle" : " ^6.2.1"
21
21
},
22
22
"autoload" : {
You can’t perform that action at this time.
0 commit comments