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

Commit a1024c6

Browse files
author
Denis Zunke
committed
Support symfony 4.0
1 parent ddd5792 commit a1024c6

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ SlackBundle unplanned
33
- Feature: Commands compatible to Symfony 3.4 (by @alister)
44
- (NOT BC) Feature: Remove old command prefixes (see v1.3) (by @alister)
55
- 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
610

711
SlackBundle v2.3.0
812
==================

Resources/config/services.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,30 @@ services:
22

33
dz.slack.identity_bag:
44
class: DZunke\SlackBundle\Slack\Messaging\IdentityBag
5+
public: true
56

67
dz.slack.connection:
78
class: DZunke\SlackBundle\Slack\Client\Connection
9+
public: true
810

911
dz.slack.client:
1012
class: DZunke\SlackBundle\Slack\Client
13+
public: true
1114
arguments: ["@dz.slack.connection"]
1215

1316
dz.slack.messaging:
1417
class: DZunke\SlackBundle\Slack\Messaging
18+
public: true
1519
arguments: ["@dz.slack.client", "@dz.slack.identity_bag"]
1620

1721
dz.slack.channels:
1822
class: DZunke\SlackBundle\Slack\Channels
23+
public: true
1924
arguments: ["@dz.slack.client"]
2025

2126
dz.slack.users:
2227
class: DZunke\SlackBundle\Slack\Users
28+
public: true
2329
arguments: ["@dz.slack.client"]
2430

2531
DZunke\SlackBundle\Command\BotMessagingCommand:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"require": {
1818
"php": ">=5.6",
19-
"symfony/symfony": "~2.8|~3.0",
19+
"symfony/symfony": "~2.8|~3.0|~4.0",
2020
"guzzlehttp/guzzle": "^6.2.1"
2121
},
2222
"autoload": {

0 commit comments

Comments
 (0)