Skip to content

Commit

Permalink
Rename Vendor
Browse files Browse the repository at this point in the history
rename references from Widoz to Spaghetti Dojo after moving the repository
  • Loading branch information
widoz authored Jun 26, 2024
1 parent 49bc83c commit 3a5a51a
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ nav_order: 2
The first thing to do is to clone the repository and install the dependencies:

```bash
$ git clone [email protected]:widoz/wp-entities-search.git
$ git clone [email protected]:spaghetti-dojo/wp-entities-search.git
$ cd wp-entities-search
$ composer install
$ yarn install
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion sources/server/src/Library.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Widoz\Wp\EntitiesSearch;
namespace SpaghettiDojo\Wp\EntitiesSearch;

use Inpsyde\Modularity;

Expand Down
2 changes: 1 addition & 1 deletion sources/server/src/Modules/BlockEditor/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions sources/server/src/Modules/E2e/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion sources/server/src/Modules/Logging/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3a5a51a

Please sign in to comment.