Skip to content

Commit

Permalink
rename namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanramsi committed Jun 18, 2022
1 parent fc125c1 commit c927c6a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
},
"autoload": {
"psr-4": {
"Rahmanramsi\\FilamentEditorJs\\": "src",
"Rahmanramsi\\FilamentEditorJs\\Database\\Factories\\": "database/factories"
"FilamentEditorJs\\": "src",
"FilamentEditorJs\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Rahmanramsi\\FilamentEditorJs\\Tests\\": "tests"
"FilamentEditorJs\\Tests\\": "tests"
}
},
"scripts": {
Expand All @@ -52,7 +52,7 @@
"extra": {
"laravel": {
"providers": [
"Rahmanramsi\\FilamentEditorJs\\FilamentEditorJsServiceProvider"
"FilamentEditorJs\\FilamentEditorJsServiceProvider"
]
}
},
Expand Down
7 changes: 1 addition & 6 deletions src/FilamentEditorJsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Rahmanramsi\FilamentEditorJs;
namespace FilamentEditorJs;

use Filament\Facades\Filament;
use Spatie\LaravelPackageTools\Package;
Expand All @@ -10,11 +10,6 @@ class FilamentEditorJsServiceProvider extends PackageServiceProvider
{
public function configurePackage(Package $package): void
{
/*
* This class is a Package Service Provider
*
* More info: https://github.com/spatie/laravel-package-tools
*/
$package
->name('filament-editorjs')
->hasViews()
Expand Down
2 changes: 1 addition & 1 deletion src/Forms/Components/Concerns/InteractsWithTools.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Rahmanramsi\FilamentEditorJs\Forms\Components\Concerns;
namespace FilamentEditorJs\Forms\Components\Concerns;

use Closure;

Expand Down
4 changes: 2 additions & 2 deletions src/Forms/Components/EditorJs.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace Rahmanramsi\FilamentEditorJs\Forms\Components;
namespace FilamentEditorJs\Forms\Components;

use Closure;
use Filament\Forms\Components\Concerns\HasFileAttachments;
use Filament\Forms\Components\Concerns\HasPlaceholder;
use Filament\Forms\Components\Contracts\HasFileAttachments as HasFileAttachmentsContract;
use Filament\Forms\Components\Field;
use Rahmanramsi\FilamentEditorJs\Forms\Components\Concerns\InteractsWithTools;
use FilamentEditorJs\Forms\Components\Concerns\InteractsWithTools;

class EditorJs extends Field implements HasFileAttachmentsContract
{
Expand Down

0 comments on commit c927c6a

Please sign in to comment.