File tree 3 files changed +29
-10
lines changed
3 files changed +29
-10
lines changed Original file line number Diff line number Diff line change 19
19
"require" : {
20
20
"php" : " >=5.4.0" ,
21
21
"doctrine/common" : " ~2.4" ,
22
- "symfony/dependency-injection" : " ~2.3|^3.0" ,
22
+ "symfony/dependency-injection" : " ~2.3|^3.0|^4.0 " ,
23
23
"symfony/config" : " ~2.3|^3.0" ,
24
- "symfony/http-kernel" : " ~2.3|^3.0" ,
25
- "symfony/console" : " ~2.3|^3.0" ,
26
- "symfony/monolog-bundle" : " ~2.3|^3.0"
24
+ "symfony/http-kernel" : " ~2.3|^3.0|^4.0 " ,
25
+ "symfony/console" : " ~2.3|^3.0|^4.0 " ,
26
+ "symfony/monolog-bundle" : " ~2.3|^3.0|^4.0 "
27
27
},
28
28
"require-dev" : {
29
29
"phpunit/phpunit" : " ~3.7" ,
30
30
"aws/aws-sdk-php" : " ~2.5" ,
31
31
"iron-io/iron_mq" : " ^4.0" ,
32
- "symfony/finder" : " ~2.3|^3.0" ,
33
- "symfony/filesystem" : " ~2.3|^3.0"
32
+ "symfony/finder" : " ~2.3|^3.0|^4.0 " ,
33
+ "symfony/filesystem" : " ~2.3|^3.0|^4.0 "
34
34
},
35
35
"suggest" : {
36
36
"aws/aws-sdk-php" : " Required to use AWS as a Queue Provider" ,
Original file line number Diff line number Diff line change 1
1
parameters :
2
- uecode_qpush.request_listener.class : Uecode\Bundle\QPushBundle\EventListener\RequestListener
3
- uecode_qpush.registry.class : Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
4
2
uecode_qpush.provider.aws : Uecode\Bundle\QPushBundle\Provider\AwsProvider
5
3
uecode_qpush.provider.ironmq : Uecode\Bundle\QPushBundle\Provider\IronMqProvider
6
4
uecode_qpush.provider.sync : Uecode\Bundle\QPushBundle\Provider\SyncProvider
Original file line number Diff line number Diff line change 1
1
services :
2
2
# ## QPush Registry
3
3
uecode_qpush.registry :
4
- class : ' %uecode_qpush.registry.class% '
4
+ class : Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
5
5
uecode_qpush :
6
6
alias : uecode_qpush.registry
7
7
@@ -13,8 +13,29 @@ services:
13
13
14
14
# ## QPush Event Listeners
15
15
uecode_qpush.request_listener :
16
- class : ' %uecode_qpush.request_listener.class% '
16
+ class : Uecode\Bundle\QPushBundle\EventListener\RequestListener
17
17
arguments :
18
18
- ' @event_dispatcher'
19
19
tags :
20
20
- { name: kernel.event_listener, event: kernel.request, priority: 254 }
21
+
22
+ # ## QPush Commands
23
+ uecode_qpush.build_command :
24
+ class : Uecode\Bundle\QPushBundle\Command\QueueBuildCommand
25
+ tags :
26
+ - { name: console.command }
27
+
28
+ uecode_qpush.destroy_command :
29
+ class : Uecode\Bundle\QPushBundle\Command\QueueDestroyCommand
30
+ tags :
31
+ - { name: console.command }
32
+
33
+ uecode_qpush.publish_command :
34
+ class : Uecode\Bundle\QPushBundle\Command\QueuePublishCommand
35
+ tags :
36
+ - { name: console.command }
37
+
38
+ uecode_qpush.receive_command :
39
+ class : Uecode\Bundle\QPushBundle\Command\QueueReceiveCommand
40
+ tags :
41
+ - { name: console.command }
You can’t perform that action at this time.
0 commit comments