diff --git a/README.md b/README.md index e885793..f61d7c8 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ > A WordPress package to search Entities including Rest API Endpoints and React Components -[![JS Quality Assurance](https://github.com/widoz/wp-entities-search/actions/workflows/js-qa.yml/badge.svg)](https://github.com/widoz/wp-entities-search/actions/workflows/js-qa.yml) -[![PHP Quality Assurance](https://github.com/widoz/wp-entities-search/actions/workflows/php-qa.yml/badge.svg)](https://github.com/widoz/wp-entities-search/actions/workflows/php-qa.yml) +[![JS Quality Assurance](https://github.com/spaghetti-dojo/wp-entities-search/actions/workflows/js-qa.yml/badge.svg)](https://github.com/spaghetti-dojo/wp-entities-search/actions/workflows/js-qa.yml) +[![PHP Quality Assurance](https://github.com/spaghetti-dojo/wp-entities-search/actions/workflows/php-qa.yml/badge.svg)](https://github.com/spaghetti-dojo/wp-entities-search/actions/workflows/php-qa.yml) This package is a library exposing reusable Components and Utilities to help you build Entities searching and storage. @@ -12,7 +12,7 @@ more Post Types but also, to search for Terms belonging to one or more Taxonomie ## Documentation -Go to [documentation](./docs) or visit the site [wp-entities-search](https://widoz.github.io/wp-entities-search/). +Go to [documentation](./docs) or visit the site [wp-entities-search](https://spaghetti-dojo.github.io/wp-entities-search/). ## License diff --git a/composer.json b/composer.json index 9c4badf..725bd35 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,11 @@ { - "name": "widoz/wp-entities-search", + "name": "spaghetti-dojo/wp-entities-search", "description": "A WordPress package to search Entities including Rest API Endpoints and React Components", "type": "library", "license": "GPL-2.0-or-later", "autoload": { "psr-4": { - "Widoz\\Wp\\EntitiesSearch\\": "sources/server/src/" + "SpaghettiDojo\\Wp\\EntitiesSearch\\": "sources/server/src/" } }, "authors": [ diff --git a/docs/_config.yml b/docs/_config.yml index f78ba8b..24f73a5 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,20 +1,20 @@ title: Wp Entities Search description: >- A WordPress package to search Entities including Rest API Endpoints and React Components -url: "https://widoz.github.io/wp-entities-search" +url: "https://spaghetti-dojo.github.io/wp-entities-search" baseurl: "/wp-entities-search" remote_theme: just-the-docs/just-the-docs aux_links: "Wp Entities Search on Github": - - "https://github.com/widoz/wp-entities-search" + - "https://github.com/spaghetti-dojo/wp-entities-search" aux_links_new_tab: true nav_external_links: - title: Go to the Repository - url: https://github.com/widoz/wp-entities-search + url: https://github.com/spaghetti-dojo/wp-entities-search opens_in_new_tab: true back_to_top: true diff --git a/docs/development.md b/docs/development.md index d0d603b..6682458 100644 --- a/docs/development.md +++ b/docs/development.md @@ -9,7 +9,7 @@ nav_order: 2 The first thing to do is to clone the repository and install the dependencies: ```bash -$ git clone git@github.com:widoz/wp-entities-search.git +$ git clone git@github.com:spaghetti-dojo/wp-entities-search.git $ cd wp-entities-search $ composer install $ yarn install diff --git a/docs/installation.md b/docs/installation.md index e5a5a0c..d0c9dd2 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -16,7 +16,7 @@ The JavaScript implementation is composed of a set of utilities and React compon To install the package as part of the composer dependencies of your project, run the following command: ```bash -composer require widoz/wp-entities-search +composer require spaghetti-dojo/wp-entities-search ``` ## NPM diff --git a/plugin.php b/plugin.php index c118a73..2e9c82d 100644 --- a/plugin.php +++ b/plugin.php @@ -9,10 +9,10 @@ declare(strict_types=1); -namespace Widoz\Wp\EntitiesSearch; +namespace SpaghettiDojo\Wp\EntitiesSearch; use Inpsyde\Modularity; -use Widoz\Wp\EntitiesSearch; +use SpaghettiDojo\Wp\EntitiesSearch; function package(): Modularity\Package { diff --git a/sources/server/src/Library.php b/sources/server/src/Library.php index 20ac493..025120d 100644 --- a/sources/server/src/Library.php +++ b/sources/server/src/Library.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Widoz\Wp\EntitiesSearch; +namespace SpaghettiDojo\Wp\EntitiesSearch; use Inpsyde\Modularity; diff --git a/sources/server/src/Modules/BlockEditor/Module.php b/sources/server/src/Modules/BlockEditor/Module.php index 46e8946..e0bb541 100644 --- a/sources/server/src/Modules/BlockEditor/Module.php +++ b/sources/server/src/Modules/BlockEditor/Module.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Widoz\Wp\EntitiesSearch\Modules\BlockEditor; +namespace SpaghettiDojo\Wp\EntitiesSearch\Modules\BlockEditor; use Inpsyde\Modularity; use Psr\Container; diff --git a/sources/server/src/Modules/E2e/Module.php b/sources/server/src/Modules/E2e/Module.php index 136bc4b..0b03478 100644 --- a/sources/server/src/Modules/E2e/Module.php +++ b/sources/server/src/Modules/E2e/Module.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace Widoz\Wp\EntitiesSearch\Modules\E2e; +namespace SpaghettiDojo\Wp\EntitiesSearch\Modules\E2e; use Inpsyde\Modularity; use Psr\Container; /** - * @internal \Widoz\Wp\EntitiesSearch + * @internal \SpaghettiDojo\Wp\EntitiesSearch */ class Module implements Modularity\Module\ExecutableModule { diff --git a/sources/server/src/Modules/Logging/Module.php b/sources/server/src/Modules/Logging/Module.php index af7b5bf..0a78cf5 100644 --- a/sources/server/src/Modules/Logging/Module.php +++ b/sources/server/src/Modules/Logging/Module.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Widoz\Wp\EntitiesSearch\Modules\Logging; +namespace SpaghettiDojo\Wp\EntitiesSearch\Modules\Logging; use Inpsyde\Modularity; use Psr\Container;