File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 "require" : {
2020 "php" : " >=5.4.0" ,
2121 "doctrine/common" : " ~2.4" ,
22- "symfony/dependency-injection" : " ~2.3|^3.0" ,
22+ "symfony/dependency-injection" : " ~2.3|^3.0|^4.0 " ,
2323 "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 "
2727 },
2828 "require-dev" : {
2929 "phpunit/phpunit" : " ~3.7" ,
3030 "aws/aws-sdk-php" : " ~2.5" ,
3131 "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 "
3434 },
3535 "suggest" : {
3636 "aws/aws-sdk-php" : " Required to use AWS as a Queue Provider" ,
Original file line number Diff line number Diff line change 11parameters :
2- uecode_qpush.request_listener.class : Uecode\Bundle\QPushBundle\EventListener\RequestListener
3- uecode_qpush.registry.class : Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
42 uecode_qpush.provider.aws : Uecode\Bundle\QPushBundle\Provider\AwsProvider
53 uecode_qpush.provider.ironmq : Uecode\Bundle\QPushBundle\Provider\IronMqProvider
64 uecode_qpush.provider.sync : Uecode\Bundle\QPushBundle\Provider\SyncProvider
Original file line number Diff line number Diff line change 11services :
22 # ## QPush Registry
33 uecode_qpush.registry :
4- class : ' %uecode_qpush.registry.class% '
4+ class : Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
55 uecode_qpush :
66 alias : uecode_qpush.registry
77
@@ -13,8 +13,29 @@ services:
1313
1414 # ## QPush Event Listeners
1515 uecode_qpush.request_listener :
16- class : ' %uecode_qpush.request_listener.class% '
16+ class : Uecode\Bundle\QPushBundle\EventListener\RequestListener
1717 arguments :
1818 - ' @event_dispatcher'
1919 tags :
2020 - { 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