Skip to content

Commit 9f2ff46

Browse files
committed
Added more notes about feature requirements
1 parent fb805f0 commit 9f2ff46

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function addConnections(ArrayNodeDefinition $node)
5353
->scalarNode('password')->defaultValue('guest')->end()
5454
->scalarNode('vhost')->defaultValue('/')->end()
5555
->booleanNode('lazy')->defaultFalse()->end()
56-
->booleanNode('keepalive')->defaultFalse()->info('requires php-amqplib v2.4.1+')->end()
56+
->booleanNode('keepalive')->defaultFalse()->info('requires php-amqplib v2.4.1+ and PHP5.4+')->end()
5757
->scalarNode('heartbeat')->defaultValue(0)->info('requires php-amqplib v2.4.1+')->end()
5858
->end()
5959
->end()

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -115,18 +115,18 @@ Add the `old_sound_rabbit_mq` section in your configuration file:
115115
old_sound_rabbit_mq:
116116
connections:
117117
default:
118-
host: 'localhost'
119-
port: 5672
120-
user: 'guest'
121-
password: 'guest'
122-
vhost: '/'
123-
lazy: false
118+
host: 'localhost'
119+
port: 5672
120+
user: 'guest'
121+
password: 'guest'
122+
vhost: '/'
123+
lazy: false
124124
125-
# requires php-amqplib v2.4.1+
126-
keepalive: false
125+
# requires php-amqplib v2.4.1+ and PHP5.4+
126+
keepalive: false
127127
128128
# requires php-amqplib v2.4.1+
129-
heartbeat: 0
129+
heartbeat: 0
130130
producers:
131131
upload_picture:
132132
connection: default

0 commit comments

Comments
 (0)