diff --git a/.phpunit.cache/test-results b/.phpunit.cache/test-results index 78e499c..5641516 100644 --- a/.phpunit.cache/test-results +++ b/.phpunit.cache/test-results @@ -1 +1 @@ -{"version":"pest_2.36.0","defects":{"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___from_and___to_date_range":7},"times":{"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_no_jobs_when_Redis_is_empty":0.025,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_counts_one_delayed_job_in_Redis":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_message_when_no_jobs_exist":0.022,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___queue":0.002,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___job__partial_match_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___uuid__exact_match_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___identifier__serialized_in_payload_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___from_and___to_date_range":0.028,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_respects___limit_and___page":0.007,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_outputs_in_JSON_when___json_is_used":0.006,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_total_count_when_using___count":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_jobs_by___from_and___to_date_range":0.002}} \ No newline at end of file +{"version":"pest_2.36.0","defects":{"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___from_and___to_date_range":7},"times":{"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_no_jobs_when_Redis_is_empty":0.025,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_counts_one_delayed_job_in_Redis":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_message_when_no_jobs_exist":0.024,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___queue":0.002,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___job__partial_match_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___uuid__exact_match_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___identifier__serialized_in_payload_":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_by___from_and___to_date_range":0.028,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_respects___limit_and___page":0.007,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_outputs_in_JSON_when___json_is_used":0.007,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_shows_total_count_when_using___count":0.001,"P\\Tests\\Feature\\ShowJobsCommandTest::__pest_evaluable_it_filters_jobs_by___from_and___to_date_range":0.002}} \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 6afbad3..2921ada 100755 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Mário Souto +Copyright (c) Mário Souto Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 4b836b9..3b4fb99 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A simple CLI tool to inspect **delayed Redis queue jobs** in Laravel. Useful for Install the package via Composer: ```bash -composer require msouto/redis-queue-inspector +composer require pdmfc/redis-queue-inspector ``` Laravel will auto-discover the service provider, no manual registration needed. @@ -96,4 +96,4 @@ MIT License ## 👤 Author **Mário Souto** -[mario.cs1@gmail.com](mailto:mario.cs1@gmail.com) +[mario.souto@pdmfc.com](mailto:mario.souto@pdmfc.com) diff --git a/composer.json b/composer.json index 9a9ddfa..d6c6d32 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "msouto/redis-queue-inspector", + "name": "pdmfc/redis-queue-inspector", "description": "A simple cli command to inspect Laravel Redis queues.", "keywords": [ "php", @@ -12,7 +12,8 @@ "authors": [ { "name": "Mário Souto", - "email": "mario.cs1@gmail.com" + "email": "mario.souto@pdmfc.com", + "role": "Developer" } ], "require": { @@ -27,7 +28,7 @@ }, "autoload": { "psr-4": { - "Msouto\\RedisQueueInspector\\": "src/" + "Pdmfc\\RedisQueueInspector\\": "src/" } }, "autoload-dev": { @@ -47,7 +48,7 @@ "extra": { "laravel": { "providers": [ - "Msouto\\RedisQueueInspector\\Providers\\RedisQueueInspectorServiceProvider" + "Pdmfc\\RedisQueueInspector\\Providers\\RedisQueueInspectorServiceProvider" ] } } diff --git a/src/Commands/ShowJobsCommand.php b/src/Commands/ShowJobsCommand.php index 12024cb..292abee 100644 --- a/src/Commands/ShowJobsCommand.php +++ b/src/Commands/ShowJobsCommand.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace Msouto\RedisQueueInspector\Commands; +namespace Pdmfc\RedisQueueInspector\Commands; use Carbon\Carbon; use Illuminate\Console\Command; -use Msouto\RedisQueueInspector\Dto\JobQuery; -use Msouto\RedisQueueInspector\Services\Scanner; +use Pdmfc\RedisQueueInspector\Dto\JobQuery; +use Pdmfc\RedisQueueInspector\Services\Scanner; final class ShowJobsCommand extends Command { diff --git a/src/Dto/JobQuery.php b/src/Dto/JobQuery.php index 7b9b551..3a3e971 100644 --- a/src/Dto/JobQuery.php +++ b/src/Dto/JobQuery.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Msouto\RedisQueueInspector\Dto; +namespace Pdmfc\RedisQueueInspector\Dto; use Carbon\Carbon; diff --git a/src/Providers/RedisQueueInspectorServiceProvider.php b/src/Providers/RedisQueueInspectorServiceProvider.php index bdb6a47..6a3ead4 100644 --- a/src/Providers/RedisQueueInspectorServiceProvider.php +++ b/src/Providers/RedisQueueInspectorServiceProvider.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace Msouto\RedisQueueInspector\Providers; +namespace Pdmfc\RedisQueueInspector\Providers; use Illuminate\Support\ServiceProvider; -use Msouto\RedisQueueInspector\Commands\ShowJobsCommand; +use Pdmfc\RedisQueueInspector\Commands\ShowJobsCommand; final class RedisQueueInspectorServiceProvider extends ServiceProvider { diff --git a/src/Services/Scanner.php b/src/Services/Scanner.php index f9cb085..06d7c27 100644 --- a/src/Services/Scanner.php +++ b/src/Services/Scanner.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace Msouto\RedisQueueInspector\Services; +namespace Pdmfc\RedisQueueInspector\Services; use Carbon\Carbon; use Illuminate\Support\Facades\Redis; -use Msouto\RedisQueueInspector\Dto\JobQuery; +use Pdmfc\RedisQueueInspector\Dto\JobQuery; final class Scanner { diff --git a/tests/TestCase.php b/tests/TestCase.php index 8486d52..63cc806 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -4,7 +4,7 @@ namespace Tests; -use Msouto\RedisQueueInspector\Providers\RedisQueueInspectorServiceProvider; +use Pdmfc\RedisQueueInspector\Providers\RedisQueueInspectorServiceProvider; use Orchestra\Testbench\TestCase as Orchestra; abstract class TestCase extends Orchestra