Skip to content

Commit c8fc836

Browse files
committed
Deploy
1 parent 5c06bc0 commit c8fc836

25 files changed

+62
-62
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add connection to `config/queue.php`:
5555
'passphrase' => env('RABBITMQ_SSL_PASSPHRASE', null),
5656
],
5757
'queue' => [
58-
'job' => VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob::class,
58+
'job' => Botika\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob::class,
5959
],
6060
],
6161

@@ -203,7 +203,7 @@ An example of your own job class:
203203

204204
namespace App\Queue\Jobs;
205205

206-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob as BaseJob;
206+
use Botika\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob as BaseJob;
207207

208208
class RabbitMQJob extends BaseJob
209209
{
@@ -235,7 +235,7 @@ Or maybe you want to add extra properties to the payload:
235235

236236
namespace App\Queue\Jobs;
237237

238-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob as BaseJob;
238+
use Botika\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob as BaseJob;
239239

240240
class RabbitMQJob extends BaseJob
241241
{
@@ -270,7 +270,7 @@ Horizon and then set `RABBITMQ_WORKER` to `horizon`.
270270
For Lumen usage the service provider should be registered manually as follow in `bootstrap/app.php`:
271271

272272
```php
273-
$app->register(VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class);
273+
$app->register(Botika\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class);
274274
```
275275

276276
## Consuming Messages

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
},
2424
"autoload": {
2525
"psr-4": {
26-
"VladimirYuldashev\\LaravelQueueRabbitMQ\\": "src/"
26+
"Botika\\LaravelQueueRabbitMQ\\": "src/"
2727
}
2828
},
2929
"autoload-dev": {
3030
"psr-4": {
31-
"VladimirYuldashev\\LaravelQueueRabbitMQ\\Tests\\": "tests/"
31+
"Botika\\LaravelQueueRabbitMQ\\Tests\\": "tests/"
3232
}
3333
},
3434
"extra": {
@@ -37,7 +37,7 @@
3737
},
3838
"laravel": {
3939
"providers": [
40-
"VladimirYuldashev\\LaravelQueueRabbitMQ\\LaravelQueueRabbitMQServiceProvider"
40+
"Botika\\LaravelQueueRabbitMQ\\LaravelQueueRabbitMQServiceProvider"
4141
]
4242
}
4343
},

config/rabbitmq.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
'passphrase' => env('RABBITMQ_SSL_PASSPHRASE', null),
3131
],
3232
'queue' => [
33-
'job' => VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob::class,
33+
'job' => Botika\LaravelQueueRabbitMQ\Queue\Jobs\RabbitMQJob::class,
3434
],
3535
],
3636

src/Console/ConsumeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Illuminate\Queue\Console\WorkCommand;
66
use Illuminate\Support\Str;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Consumer;
7+
use Botika\LaravelQueueRabbitMQ\Consumer;
88

99
class ConsumeCommand extends WorkCommand
1010
{

src/Console/ExchangeDeclareCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
7+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
88

99
class ExchangeDeclareCommand extends Command
1010
{

src/Console/ExchangeDeleteCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
7+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
88

99
class ExchangeDeleteCommand extends Command
1010
{

src/Console/QueueBindCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
7+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
88

99
class QueueBindCommand extends Command
1010
{
11-
protected $signature = 'rabbitmq:queue-bind
11+
protected $signature = 'rabbitmq:queue-bind
1212
{queue}
1313
{exchange}
1414
{connection=rabbitmq : The name of the queue connection to use}

src/Console/QueueDeclareCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
7+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
88

99
class QueueDeclareCommand extends Command
1010
{

src/Console/QueueDeleteCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
7-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
7+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
88

99
class QueueDeleteCommand extends Command
1010
{

src/Console/QueuePurgeCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Console;
3+
namespace Botika\LaravelQueueRabbitMQ\Console;
44

55
use Exception;
66
use Illuminate\Console\Command;
77
use Illuminate\Console\ConfirmableTrait;
8-
use VladimirYuldashev\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
8+
use Botika\LaravelQueueRabbitMQ\Queue\Connectors\RabbitMQConnector;
99

1010
class QueuePurgeCommand extends Command
1111
{

0 commit comments

Comments
 (0)