Skip to content

Commit fa46dff

Browse files
Rename namespace and references to JeffersonGoncalves.
Updated all occurrences of "JeffersonSimaoGoncalves" to "JeffersonGoncalves" across the project, including namespaces, package metadata, file paths, and documentation. This change ensures consistency and aligns with the updated naming convention.
1 parent a769bc3 commit fa46dff

10 files changed

+27
-34
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ updates:
99
schedule:
1010
interval: "weekly"
1111
labels:
12-
- "dependencies"
12+
- "dependencies"

CHANGELOG.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# Changelog
22

3-
All notable changes to `filament-check-whois-widget` will be documented in this file.
4-
5-
## 1.0.0 - 202X-XX-XX
6-
7-
- initial release
3+
All notable changes to this project will be documented in this file.

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) jeffersonsimaogoncalves <[email protected]>
3+
Copyright (c) jeffersongoncalves <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# A filamentPHP widget to get details about whois
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/jeffersonsimaogoncalves/filament-check-whois-widget.svg?style=flat-square)](https://packagist.org/packages/jeffersonsimaogoncalves/filament-check-whois-widget)
4-
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/jeffersonsimaogoncalves/filament-check-whois-widget/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/jeffersonsimaogoncalves/filament-check-whois-widget/actions?query=workflow%3Arun-tests+branch%3Amain)
5-
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/jeffersonsimaogoncalves/filament-check-whois-widget/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/jeffersonsimaogoncalves/filament-check-whois-widget/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/jeffersonsimaogoncalves/filament-check-whois-widget.svg?style=flat-square)](https://packagist.org/packages/jeffersonsimaogoncalves/filament-check-whois-widget)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/jeffersongoncalves/filament-check-whois-widget.svg?style=flat-square)](https://packagist.org/packages/jeffersongoncalves/filament-check-whois-widget)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/jeffersongoncalves/filament-check-whois-widget/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/jeffersongoncalves/filament-check-whois-widget/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/jeffersongoncalves/filament-check-whois-widget/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/jeffersongoncalves/filament-check-whois-widget/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/jeffersongoncalves/filament-check-whois-widget.svg?style=flat-square)](https://packagist.org/packages/jeffersongoncalves/filament-check-whois-widget)
77

88

99
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
@@ -13,7 +13,7 @@ This is where your description should go. Limit it to a paragraph or two. Consid
1313
You can install the package via composer:
1414

1515
```bash
16-
composer require jeffersonsimaogoncalves/filament-check-whois-widget
16+
composer require jeffersongoncalves/filament-check-whois-widget
1717
```
1818

1919
You can publish the config file with:
@@ -40,7 +40,7 @@ return [
4040
Add in AdminPanelProvider.php
4141

4242
```php
43-
use JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetPlugin;
43+
use JeffersonGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetPlugin;
4444

4545
->plugins([
4646
FilamentCheckWhoisWidgetPlugin::make()
@@ -53,7 +53,7 @@ use JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetPlu
5353
Optionally, you can add more configs as example below:
5454

5555
```php
56-
use JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetPlugin;
56+
use JeffersonGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetPlugin;
5757

5858
FilamentCheckWhoisWidgetPlugin::make()
5959
->domains([
@@ -87,7 +87,7 @@ Please review [our security policy](../../security/policy) on how to report secu
8787

8888
## Credits
8989

90-
- [Jèfferson Gonçalves](https://github.com/jeffersonsimaogoncalves)
90+
- [Jèfferson Gonçalves](https://github.com/jeffersongoncalves)
9191
- [All Contributors](../../contributors)
9292

9393
## License

composer.json

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "jeffersonsimaogoncalves/filament-check-whois-widget",
2+
"name": "jeffersongoncalves/filament-check-whois-widget",
33
"description": "This is my package filament-check-whois-widget",
44
"keywords": [
5-
"jeffersonsimaogoncalves",
5+
"jeffersongoncalves",
66
"laravel",
77
"filament-check-whois-widget"
88
],
9-
"homepage": "https://github.com/jeffersonsimaogoncalves/filament-check-whois-widget",
9+
"homepage": "https://github.com/jeffersongoncalves/filament-check-whois-widget",
1010
"support": {
11-
"issues": "https://github.com/jeffersonsimaogoncalves/filament-check-whois-widget/issues",
12-
"source": "https://github.com/jeffersonsimaogoncalves/filament-check-whois-widget"
11+
"issues": "https://github.com/jeffersongoncalves/filament-check-whois-widget/issues",
12+
"source": "https://github.com/jeffersongoncalves/filament-check-whois-widget"
1313
},
1414
"license": "MIT",
1515
"authors": [
@@ -41,12 +41,12 @@
4141
},
4242
"autoload": {
4343
"psr-4": {
44-
"JeffersonSimaoGoncalves\\FilamentCheckWhoisWidget\\": "src/"
44+
"JeffersonGoncalves\\FilamentCheckWhoisWidget\\": "src/"
4545
}
4646
},
4747
"autoload-dev": {
4848
"psr-4": {
49-
"JeffersonSimaoGoncalves\\FilamentCheckWhoisWidget\\Tests\\": "tests/"
49+
"JeffersonGoncalves\\FilamentCheckWhoisWidget\\Tests\\": "tests/"
5050
}
5151
},
5252
"scripts": {
@@ -66,11 +66,8 @@
6666
"extra": {
6767
"laravel": {
6868
"providers": [
69-
"JeffersonSimaoGoncalves\\FilamentCheckWhoisWidget\\FilamentCheckWhoisWidgetServiceProvider"
70-
],
71-
"aliases": {
72-
"FilamentCheckWhoisWidget": "JeffersonSimaoGoncalves\\FilamentCheckWhoisWidget\\Facades\\FilamentCheckWhoisWidget"
73-
}
69+
"JeffersonGoncalves\\FilamentCheckWhoisWidget\\FilamentCheckWhoisWidgetServiceProvider"
70+
]
7471
}
7572
},
7673
"minimum-stability": "dev",

src/FilamentCheckWhoisWidgetPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace JeffersonSimaoGoncalves\FilamentCheckWhoisWidget;
3+
namespace JeffersonGoncalves\FilamentCheckWhoisWidget;
44

55
use Closure;
66
use Filament\Contracts\Plugin;

src/FilamentCheckWhoisWidgetServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace JeffersonSimaoGoncalves\FilamentCheckWhoisWidget;
3+
namespace JeffersonGoncalves\FilamentCheckWhoisWidget;
44

55
use Filament\Support\Assets\Asset;
66
use Filament\Support\Facades\FilamentAsset;

src/Widgets/CheckWhoisWidget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\Widgets;
3+
namespace JeffersonGoncalves\FilamentCheckWhoisWidget\Widgets;
44

55
use AllowDynamicProperties;
66
use AshAllenDesign\FaviconFetcher\Facades\Favicon;

tests/Pest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

3-
use JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\Tests\TestCase;
3+
use JeffersonGoncalves\FilamentCheckWhoisWidget\Tests\TestCase;
44

55
uses(TestCase::class)->in(__DIR__);

tests/TestCase.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\Tests;
3+
namespace JeffersonGoncalves\FilamentCheckWhoisWidget\Tests;
44

55
use BladeUI\Heroicons\BladeHeroiconsServiceProvider;
66
use BladeUI\Icons\BladeIconsServiceProvider;
@@ -13,7 +13,7 @@
1313
use Filament\Tables\TablesServiceProvider;
1414
use Filament\Widgets\WidgetsServiceProvider;
1515
use Illuminate\Database\Eloquent\Factories\Factory;
16-
use JeffersonSimaoGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetServiceProvider;
16+
use JeffersonGoncalves\FilamentCheckWhoisWidget\FilamentCheckWhoisWidgetServiceProvider;
1717
use Livewire\LivewireServiceProvider;
1818
use Orchestra\Testbench\TestCase as Orchestra;
1919
use RyanChandler\BladeCaptureDirective\BladeCaptureDirectiveServiceProvider;
@@ -25,7 +25,7 @@ protected function setUp(): void
2525
parent::setUp();
2626

2727
Factory::guessFactoryNamesUsing(
28-
fn (string $modelName) => 'JeffersonSimaoGoncalves\\FilamentCheckWhoisWidget\\Database\\Factories\\' . class_basename($modelName) . 'Factory'
28+
fn (string $modelName) => 'JeffersonGoncalves\\FilamentCheckWhoisWidget\\Database\\Factories\\' . class_basename($modelName) . 'Factory'
2929
);
3030
}
3131

0 commit comments

Comments
 (0)