Skip to content

Commit fcbcf8d

Browse files
committed
updated name spaces of project to new name
1 parent 8f23ed8 commit fcbcf8d

15 files changed

+26
-26
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
>`composer require jd-dotlogics/laravel-grapesjs`
44
55
Publish migrations
6-
>`php artisan vendor:publish --provider="Topdot\Grapesjs\GrapesjsServiceProvider"`
6+
>`php artisan vendor:publish --provider="Dotlogics\Grapesjs\GrapesjsServiceProvider"`

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "jawad-topdot/laravel-grapesjs",
2+
"name": "jd-dotlogics/laravel-grapesjs",
33
"description": "A package for use Grapes.js in Laravel",
44
"type": "library",
55
"require": {
66
"php": "^7.3|^8.0",
77
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
8-
"jawad-topdot/laravel-media": "^1"
8+
"jd-dotlogics/laravel-media": "^1"
99
},
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": "Muhammad Jawad",
14-
"email": "jawad.topdot@gmail.com"
13+
"name": "Dotlogics",
14+
"email": "hello@dotlogics.com"
1515
}
1616
],
1717
"autoload": {
1818
"psr-4": {
19-
"Topdot\\Grapesjs\\": "src"
19+
"Dotlogics\\Grapesjs\\": "src"
2020
}
2121
},
2222
"extra": {
2323
"laravel": {
2424
"providers": [
25-
"Topdot\\Grapesjs\\GrapesjsServiceProvider"
25+
"Dotlogics\\Grapesjs\\GrapesjsServiceProvider"
2626
]
2727
}
2828
},

src/App/Contracts/Editable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Contracts;
3+
namespace Dotlogics\Grapesjs\App\Contracts;
44

55
interface Editable{
66
public function getEditorPageTitleAttribute(): string;

src/App/Editor/AssetRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55
use Illuminate\Http\Request;
66
use Spatie\MediaLibrary\MediaCollections\Models\Media;

src/App/Editor/EditorAssetManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55
class EditorAssetManager
66
{

src/App/Editor/EditorBaseClass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55
class EditorBaseClass
66
{

src/App/Editor/EditorCanvas.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55
class EditorCanvas
66
{

src/App/Editor/EditorConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55
class EditorConfig extends EditorBaseClass
66
{

src/App/Editor/EditorFactory.php

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

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

5-
use Topdot\Grapesjs\App\Contracts\Editable;
5+
use Dotlogics\Grapesjs\App\Contracts\Editable;
66

77
class EditorFactory extends EditorBaseClass
88
{

src/App/Editor/EditorStorageManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Topdot\Grapesjs\App\Editor;
3+
namespace Dotlogics\Grapesjs\App\Editor;
44

55

66
class EditorStorageManager

0 commit comments

Comments
 (0)