File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2020 "laminas/laminas-modulemanager" : " ^2.8" ,
2121 "laminas/laminas-stdlib" : " ^3.2" ,
2222 "laminas/laminas-eventmanager" : " ^3.2" ,
23- "laminas/laminas-servicemanager" : " ^3.3 " ,
23+ "laminas/laminas-servicemanager" : " ^3.11 " ,
2424 "laminas/laminas-mvc" : " ^3.1" ,
25- "container-interop/container-interop" : " ^1.2" ,
2625 "php-amqplib/php-amqplib" : " ^3.1" ,
2726 "slm/queue" : " ^3.0" ,
27+ "psr/container" : " ^1.0" ,
2828 "psr/log" : " ^1.1"
2929 },
3030 "require-dev" : {
Original file line number Diff line number Diff line change 33namespace SlmQueueRabbitMq ;
44
55use Laminas \ServiceManager \Factory \FactoryInterface ;
6- use Interop \Container \ContainerInterface ;
6+ use Psr \Container \ContainerInterface ;
77
88class ConfigFactory implements FactoryInterface
99{
Original file line number Diff line number Diff line change 22
33namespace SlmQueueRabbitMq \Factory ;
44
5+ use Laminas \ServiceManager \Factory \FactoryInterface ;
6+ use Psr \Container \ContainerInterface ;
57use SlmQueue \Job \JobPluginManager ;
68use SlmQueueRabbitMq \Connection \Connection ;
7- use SlmQueueRabbitMq \Queue \RabbitMqQueue ;
89use SlmQueueRabbitMq \Options \RabbitMqOptions ;
9- use Interop \Container \ContainerInterface ;
10- use Laminas \ServiceManager \Factory \FactoryInterface ;
10+ use SlmQueueRabbitMq \Queue \RabbitMqQueue ;
1111
1212class RabbitMqQueueFactory implements FactoryInterface
1313{
Original file line number Diff line number Diff line change 22
33namespace SlmQueueRabbitMq \Factory ;
44
5- use Interop \Container \ContainerInterface ;
5+ use Laminas \EventManager \EventManager ;
6+ use Laminas \ServiceManager \Factory \FactoryInterface ;
7+ use Psr \Container \ContainerInterface ;
68use Psr \Log \LoggerInterface ;
79use Psr \Log \NullLogger ;
810use SlmQueue \Factory \WorkerAbstractFactory ;
911use SlmQueue \Strategy \StrategyPluginManager ;
1012use SlmQueue \Worker \WorkerInterface ;
1113use SlmQueueRabbitMq \Job \MessageRetryCounter ;
1214use SlmQueueRabbitMq \Worker \RabbitMqWorker ;
13- use Laminas \EventManager \EventManager ;
14- use Laminas \ServiceManager \Factory \FactoryInterface ;
1515
1616class RabbitMqWorkerFactory extends WorkerAbstractFactory implements FactoryInterface
1717{
You can’t perform that action at this time.
0 commit comments