diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a35491..c4804cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v4.0.11 + +- Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes. + # v4.0.10 - Update getBible loader to version 3.1.0 @@ -45,6 +49,6 @@ - Moved to Joomla 4 -# v3.0.7 +# v3.0.8 -- Update getBible loader to version 3.1.0 \ No newline at end of file +- Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes. \ No newline at end of file diff --git a/GetbibleInstallerScript.php b/GetbibleInstallerScript.php index 67895f3..76d12b4 100644 --- a/GetbibleInstallerScript.php +++ b/GetbibleInstallerScript.php @@ -307,6 +307,31 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface // do any install needed if ($type === 'install') { + + // all things to clear out + $remove = JPATH_LIBRARIES . '/jcb_powers/VDM.Joomla.GetBible'; + if (Folder::exists($remove)) + { + $it = new \RecursiveDirectoryIterator($remove, \RecursiveDirectoryIterator::SKIP_DOTS); + $files = new \RecursiveIteratorIterator($it, \RecursiveIteratorIterator::CHILD_FIRST); + + foreach ($files as $fileinfo) + { + $filePath = $fileinfo->getRealPath(); + + if ($fileinfo->isDir()) + { + Folder::delete($filePath); + } + else + { + File::delete($filePath); + } + } + + // Delete the root folder + Folder::delete($remove); + } } return true; @@ -755,7 +780,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface echo '
'; +Welcome to the next level of scripture engagement - The Bible for Joomla! Our purpose is to bring the Word of God to every person, in their native language, entirely free. This isn't just a typical extension; it's a groundbreaking tool developed to span language divides and deliver a rich, customizable Bible study experience to users worldwide.
diff --git a/libraries/jcb_powers/.htaccess b/libraries/vendor_getbible/.htaccess
similarity index 100%
rename from libraries/jcb_powers/.htaccess
rename to libraries/vendor_getbible/.htaccess
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/AI.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/AI.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI.php
index 927d809..dfb0cb4 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/AI.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
-use VDM\Joomla\GetBible\Openai\Config;
-use VDM\Joomla\GetBible\Data\Response;
-use VDM\Joomla\GetBible\AI\Engineer;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Data\Response;
+use TrueChristianChurch\Joomla\GetBible\AI\Engineer;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/AI/Engineer.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI/Engineer.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/AI/Engineer.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI/Engineer.php
index 45b4366..db23749 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/AI/Engineer.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI/Engineer.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\AI;
+namespace TrueChristianChurch\Joomla\GetBible\AI;
-use VDM\Joomla\GetBible\Data\Scripture;
-use VDM\Joomla\GetBible\Data\Prompt;
-use VDM\Joomla\GetBible\Data\Placeholders;
-use VDM\Joomla\Openai\Chat;
-use VDM\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Data\Placeholders;
+use TrueChristianChurch\Joomla\Openai\Chat;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/AI/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/AI/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/AI/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Api.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Api.php
similarity index 79%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Api.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Api.php
index c2b23ca..17b71b2 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Api.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Api.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Abstraction;
+namespace TrueChristianChurch\Joomla\GetBible\Abstraction;
-use VDM\Joomla\GetBible\Utilities\Http;
-use VDM\Joomla\GetBible\Utilities\Uri;
-use VDM\Joomla\GetBible\Utilities\Response;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Http;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Uri;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Response;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Watcher.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Watcher.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Watcher.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Watcher.php
index d37c895..9fc5645 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/Watcher.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/Watcher.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Abstraction;
+namespace TrueChristianChurch\Joomla\GetBible\Abstraction;
use Joomla\CMS\Date\Date;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Abstraction/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Abstraction/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Books.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Books.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Books.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Books.php
index 12a36ca..5319cdc 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Books.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Books.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Api;
+namespace TrueChristianChurch\Joomla\GetBible\Api;
-use VDM\Joomla\GetBible\Abstraction\Api;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Chapters.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Chapters.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Chapters.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Chapters.php
index 0e9d06e..89e3c8c 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Chapters.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Chapters.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Api;
+namespace TrueChristianChurch\Joomla\GetBible\Api;
-use VDM\Joomla\GetBible\Abstraction\Api;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Translations.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Translations.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Translations.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Translations.php
index 4ff0648..befd502 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Translations.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Translations.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Api;
+namespace TrueChristianChurch\Joomla\GetBible\Api;
-use VDM\Joomla\GetBible\Abstraction\Api;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Verses.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Verses.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Verses.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Verses.php
index 8110f72..5ab5c8a 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/Verses.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/Verses.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Api;
+namespace TrueChristianChurch\Joomla\GetBible\Api;
-use VDM\Joomla\GetBible\Abstraction\Api;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Api/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Api/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Config.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Config.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Config.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Config.php
index 1221c33..c37a35d 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Config.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Config.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
-use VDM\Joomla\Utilities\Component\Helper;
-use VDM\Joomla\Abstraction\BaseConfig;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Abstraction\BaseConfig;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/DailyScripture.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/DailyScripture.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/DailyScripture.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/DailyScripture.php
index b2fca44..83703ea 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/DailyScripture.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/DailyScripture.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
-use VDM\Joomla\GetBible\Config;
-use VDM\Joomla\GetBible\Utilities\Http;
-use VDM\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Config;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Http;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Book.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Book.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Book.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Book.php
index da5d4f8..ba98031 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Book.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Book.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Chapter.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Chapter.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Chapter.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Chapter.php
index 04e899a..553a62f 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Chapter.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Chapter.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Placeholders.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Placeholders.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Placeholders.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Placeholders.php
index fdc0e91..689b38c 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Placeholders.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Placeholders.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Data\Scripture;
-use VDM\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Prompt.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Prompt.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Prompt.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Prompt.php
index cde1a2b..e091c9b 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Prompt.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Prompt.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Response.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Response.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Response.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Response.php
index eacc4d5..80fc7e0 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Response.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Response.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Data\Scripture;
-use VDM\Joomla\GetBible\Data\Prompt;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Scripture.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Scripture.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Scripture.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Scripture.php
index 904363c..33f32e1 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Scripture.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Scripture.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Data\Translation;
-use VDM\Joomla\GetBible\Data\Book;
-use VDM\Joomla\GetBible\Data\Chapter;
-use VDM\Joomla\GetBible\Data\Verse;
-use VDM\Joomla\GetBible\Data\Word;
+use TrueChristianChurch\Joomla\GetBible\Data\Translation;
+use TrueChristianChurch\Joomla\GetBible\Data\Book;
+use TrueChristianChurch\Joomla\GetBible\Data\Chapter;
+use TrueChristianChurch\Joomla\GetBible\Data\Verse;
+use TrueChristianChurch\Joomla\GetBible\Data\Word;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Translation.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Translation.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Translation.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Translation.php
index 193a72b..35c07e4 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Translation.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Translation.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Verse.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Verse.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Verse.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Verse.php
index 4ef1905..8bf74d3 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Verse.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Verse.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Data\Chapter;
-use VDM\Joomla\GetBible\Openai\Config;
-use VDM\Joomla\GetBible\Data\Prompt;
-use VDM\Joomla\GetBible\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\GetBible\Data\Chapter;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Word.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Word.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Word.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Word.php
index 0c80681..f32911e 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/Word.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/Word.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Data;
+namespace TrueChristianChurch\Joomla\GetBible\Data;
-use VDM\Joomla\GetBible\Data\Verse;
-use VDM\Joomla\GetBible\Openai\Config;
-use VDM\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Data\Verse;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Data/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Data/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Insert.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Insert.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Insert.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Insert.php
index 010bac0..5c60552 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Insert.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Insert.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Database;
+namespace TrueChristianChurch\Joomla\GetBible\Database;
-use VDM\Joomla\GetBible\Model\Upsert as Model;
-use VDM\Joomla\Database\Insert as Database;
+use TrueChristianChurch\Joomla\GetBible\Model\Upsert as Model;
+use TrueChristianChurch\Joomla\Database\Insert as Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Load.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Load.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Load.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Load.php
index 772305a..28d2020 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Load.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Load.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Database;
+namespace TrueChristianChurch\Joomla\GetBible\Database;
-use VDM\Joomla\GetBible\Table;
-use VDM\Joomla\GetBible\Model\Load as Model;
-use VDM\Joomla\Database\Load as Database;
+use TrueChristianChurch\Joomla\GetBible\Table;
+use TrueChristianChurch\Joomla\GetBible\Model\Load as Model;
+use TrueChristianChurch\Joomla\Database\Load as Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Update.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Update.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Update.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Update.php
index dfa4101..3763236 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/Update.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/Update.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Database;
+namespace TrueChristianChurch\Joomla\GetBible\Database;
-use VDM\Joomla\GetBible\Model\Upsert as Model;
-use VDM\Joomla\Database\Update as Database;
+use TrueChristianChurch\Joomla\GetBible\Model\Upsert as Model;
+use TrueChristianChurch\Joomla\Database\Update as Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Database/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Database/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Factory.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Factory.php
similarity index 75%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Factory.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Factory.php
index 4aeffeb..529746d 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Factory.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Factory.php
@@ -9,17 +9,17 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\DI\Container;
-use VDM\Joomla\GetBible\Service\Api;
-use VDM\Joomla\GetBible\Service\Utilities;
-use VDM\Joomla\GetBible\Service\Watcher;
-use VDM\Joomla\GetBible\Service\App;
-use VDM\Joomla\GetBible\Service\Model;
-use VDM\Joomla\GetBible\Service\Database;
-use VDM\Joomla\Interfaces\FactoryInterface;
+use TrueChristianChurch\Joomla\GetBible\Service\Api;
+use TrueChristianChurch\Joomla\GetBible\Service\Utilities;
+use TrueChristianChurch\Joomla\GetBible\Service\Watcher;
+use TrueChristianChurch\Joomla\GetBible\Service\App;
+use TrueChristianChurch\Joomla\GetBible\Service\Model;
+use TrueChristianChurch\Joomla\GetBible\Service\Database;
+use TrueChristianChurch\Joomla\Interfaces\FactoryInterface;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Linker.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Linker.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Linker.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Linker.php
index 9a94bed..eeedb05 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Linker.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Linker.php
@@ -9,16 +9,16 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\CMS\User\UserHelper;
use Joomla\CMS\Language\Text;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Utilities\SessionHelper as Session;
-use VDM\Joomla\Utilities\GuidHelper;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Utilities\SessionHelper as Session;
+use TrueChristianChurch\Joomla\Utilities\GuidHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Loader.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Loader.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Loader.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Loader.php
index 1598913..856b7d6 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Loader.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Loader.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\Registry\Registry;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Watcher;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Watcher;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Load.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Load.php
similarity index 84%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Load.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Load.php
index 802f489..f45b853 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Load.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Load.php
@@ -9,16 +9,16 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Model;
+namespace TrueChristianChurch\Joomla\GetBible\Model;
-use VDM\Joomla\Abstraction\BaseConfig as Config;
-use VDM\Joomla\GetBible\Table;
-use VDM\Joomla\Utilities\StringHelper;
-use VDM\Joomla\Utilities\ArrayHelper;
-use VDM\Joomla\Utilities\ObjectHelper;
-use VDM\Joomla\Interfaces\ModelInterface;
-use VDM\Joomla\Abstraction\Model;
+use TrueChristianChurch\Joomla\Abstraction\BaseConfig as Config;
+use TrueChristianChurch\Joomla\GetBible\Table;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
+use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
+use TrueChristianChurch\Joomla\Interfaces\ModelInterface;
+use TrueChristianChurch\Joomla\Abstraction\Model;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Upsert.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Upsert.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Upsert.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Upsert.php
index 5c53ea3..bdd47e1 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/Upsert.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/Upsert.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Model;
+namespace TrueChristianChurch\Joomla\GetBible\Model;
-use VDM\Joomla\Abstraction\BaseConfig as Config;
-use VDM\Joomla\GetBible\Table;
-use VDM\Joomla\Utilities\ObjectHelper;
-use VDM\Joomla\Interfaces\ModelInterface;
-use VDM\Joomla\Abstraction\Model;
+use TrueChristianChurch\Joomla\Abstraction\BaseConfig as Config;
+use TrueChristianChurch\Joomla\GetBible\Table;
+use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
+use TrueChristianChurch\Joomla\Interfaces\ModelInterface;
+use TrueChristianChurch\Joomla\Abstraction\Model;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Model/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Model/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Note.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Note.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Note.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Note.php
index c2932dd..723ac9b 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Note.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Note.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\CMS\Language\Text;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Linker;
-use VDM\Joomla\Utilities\GuidHelper;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Linker;
+use TrueChristianChurch\Joomla\Utilities\GuidHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai.php
similarity index 74%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai.php
index 8cc9fe9..810a715 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai.php
@@ -9,17 +9,17 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\DI\Container;
-use VDM\Joomla\GetBible\Service\Openai as Api;
-use VDM\Joomla\Openai\Service\Utilities;
-use VDM\Joomla\GetBible\Service\Data;
-use VDM\Joomla\GetBible\Service\AI;
-use VDM\Joomla\GetBible\Service\Model;
-use VDM\Joomla\GetBible\Service\Database;
-use VDM\Joomla\Interfaces\FactoryInterface;
+use TrueChristianChurch\Joomla\GetBible\Service\Openai as Api;
+use TrueChristianChurch\Joomla\Openai\Service\Utilities;
+use TrueChristianChurch\Joomla\GetBible\Service\Data;
+use TrueChristianChurch\Joomla\GetBible\Service\AI;
+use TrueChristianChurch\Joomla\GetBible\Service\Model;
+use TrueChristianChurch\Joomla\GetBible\Service\Database;
+use TrueChristianChurch\Joomla\Interfaces\FactoryInterface;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai/Config.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai/Config.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai/Config.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai/Config.php
index 1c95a39..f970ae8 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai/Config.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai/Config.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Openai;
+namespace TrueChristianChurch\Joomla\GetBible\Openai;
use Joomla\CMS\Factory as JoomlaFactory;
use Joomla\Registry\Registry as JoomlaRegistry;
use Joomla\Input\Input;
-use VDM\Joomla\Utilities\Component\Helper;
-use VDM\Joomla\Abstraction\BaseConfig;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Abstraction\BaseConfig;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Openai/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Openai/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Search.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Search.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Search.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Search.php
index 7483592..32b7b21 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Search.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Search.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/AI.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/AI.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/AI.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/AI.php
index c53cb08..2255db2 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/AI.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/AI.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\AI as GetBible;
-use VDM\Joomla\GetBible\AI\Engineer;
+use TrueChristianChurch\Joomla\GetBible\AI as GetBible;
+use TrueChristianChurch\Joomla\GetBible\AI\Engineer;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Api.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Api.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Api.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Api.php
index b08eb75..c3edfc6 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Api.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Api.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Api\Translations;
-use VDM\Joomla\GetBible\Api\Books;
-use VDM\Joomla\GetBible\Api\Chapters;
-use VDM\Joomla\GetBible\Api\Verses;
+use TrueChristianChurch\Joomla\GetBible\Api\Translations;
+use TrueChristianChurch\Joomla\GetBible\Api\Books;
+use TrueChristianChurch\Joomla\GetBible\Api\Chapters;
+use TrueChristianChurch\Joomla\GetBible\Api\Verses;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/App.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/App.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/App.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/App.php
index 9a32b1d..43eada5 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/App.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/App.php
@@ -9,21 +9,21 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Config;
-use VDM\Joomla\GetBible\Table;
-use VDM\Joomla\GetBible\DailyScripture;
-use VDM\Joomla\GetBible\Search;
-use VDM\Joomla\GetBible\Loader;
-use VDM\Joomla\GetBible\Linker;
-use VDM\Joomla\GetBible\Note;
-use VDM\Joomla\GetBible\Tag;
-use VDM\Joomla\GetBible\Tagged;
-use VDM\Joomla\GetBible\Tagged\Paragraphs;
+use TrueChristianChurch\Joomla\GetBible\Config;
+use TrueChristianChurch\Joomla\GetBible\Table;
+use TrueChristianChurch\Joomla\GetBible\DailyScripture;
+use TrueChristianChurch\Joomla\GetBible\Search;
+use TrueChristianChurch\Joomla\GetBible\Loader;
+use TrueChristianChurch\Joomla\GetBible\Linker;
+use TrueChristianChurch\Joomla\GetBible\Note;
+use TrueChristianChurch\Joomla\GetBible\Tag;
+use TrueChristianChurch\Joomla\GetBible\Tagged;
+use TrueChristianChurch\Joomla\GetBible\Tagged\Paragraphs;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Data.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Data.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Data.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Data.php
index 20eca16..661d99d 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Data.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Data.php
@@ -9,23 +9,23 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Openai\Config;
-use VDM\Joomla\GetBible\Table;
-use VDM\Joomla\GetBible\Utilities\StringHelper;
-use VDM\Joomla\GetBible\Data\Scripture;
-use VDM\Joomla\GetBible\Data\Translation;
-use VDM\Joomla\GetBible\Data\Book;
-use VDM\Joomla\GetBible\Data\Chapter;
-use VDM\Joomla\GetBible\Data\Verse;
-use VDM\Joomla\GetBible\Data\Word;
-use VDM\Joomla\GetBible\Data\Prompt;
-use VDM\Joomla\GetBible\Data\Placeholders;
-use VDM\Joomla\GetBible\Data\Response;
+use TrueChristianChurch\Joomla\GetBible\Openai\Config;
+use TrueChristianChurch\Joomla\GetBible\Table;
+use TrueChristianChurch\Joomla\GetBible\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
+use TrueChristianChurch\Joomla\GetBible\Data\Translation;
+use TrueChristianChurch\Joomla\GetBible\Data\Book;
+use TrueChristianChurch\Joomla\GetBible\Data\Chapter;
+use TrueChristianChurch\Joomla\GetBible\Data\Verse;
+use TrueChristianChurch\Joomla\GetBible\Data\Word;
+use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
+use TrueChristianChurch\Joomla\GetBible\Data\Placeholders;
+use TrueChristianChurch\Joomla\GetBible\Data\Response;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Database.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Database.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Database.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Database.php
index b1a7039..a71c418 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Database.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Database.php
@@ -9,17 +9,17 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Database\Insert as BaseInsert;
-use VDM\Joomla\Database\Update as BaseUpdate;
-use VDM\Joomla\Database\Load as BaseLoad;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\Database\Insert as BaseInsert;
+use TrueChristianChurch\Joomla\Database\Update as BaseUpdate;
+use TrueChristianChurch\Joomla\Database\Load as BaseLoad;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Model.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Model.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Model.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Model.php
index 2fd9db7..39490b5 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Model.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Model.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Model\Upsert;
-use VDM\Joomla\GetBible\Model\Load;
+use TrueChristianChurch\Joomla\GetBible\Model\Upsert;
+use TrueChristianChurch\Joomla\GetBible\Model\Load;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Openai.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Openai.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Openai.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Openai.php
index e33a1b5..b3e9ea2 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Openai.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Openai.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Openai\Chat;
-use VDM\Joomla\Openai\Completions;
-use VDM\Joomla\Openai\Models;
-use VDM\Joomla\Openai\Moderate;
+use TrueChristianChurch\Joomla\Openai\Chat;
+use TrueChristianChurch\Joomla\Openai\Completions;
+use TrueChristianChurch\Joomla\Openai\Models;
+use TrueChristianChurch\Joomla\Openai\Moderate;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Utilities.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Utilities.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Utilities.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Utilities.php
index 74a87e2..5dea585 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Utilities.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Utilities.php
@@ -9,16 +9,16 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Utilities\Uri;
-use VDM\Joomla\GetBible\Utilities\Response;
-use VDM\Joomla\GetBible\Utilities\Http;
-use VDM\Joomla\GetBible\Utilities\StringHelper;
-use VDM\Joomla\GetBible\Utilities\SessionHelper;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Uri;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Response;
+use TrueChristianChurch\Joomla\GetBible\Utilities\Http;
+use TrueChristianChurch\Joomla\GetBible\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\GetBible\Utilities\SessionHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Watcher.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Watcher.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Watcher.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Watcher.php
index 28a0e12..9bd5e83 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/Watcher.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/Watcher.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Service;
+namespace TrueChristianChurch\Joomla\GetBible\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\GetBible\Watcher as Watch;
-use VDM\Joomla\GetBible\Watcher\Translation;
-use VDM\Joomla\GetBible\Watcher\Book;
-use VDM\Joomla\GetBible\Watcher\Chapter;
+use TrueChristianChurch\Joomla\GetBible\Watcher as Watch;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Translation;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Book;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Chapter;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Service/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Service/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Table.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Table.php
similarity index 99%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Table.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Table.php
index a14da6f..6945951 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Table.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Table.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
-use VDM\Joomla\Interfaces\Tableinterface;
-use VDM\Joomla\Abstraction\BaseTable;
+use TrueChristianChurch\Joomla\Interfaces\Tableinterface;
+use TrueChristianChurch\Joomla\Abstraction\BaseTable;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tag.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tag.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Tag.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tag.php
index 82f0a7c..ef4776d 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tag.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tag.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\CMS\Language\Text;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Linker;
-use VDM\Joomla\Utilities\GuidHelper;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Linker;
+use TrueChristianChurch\Joomla\Utilities\GuidHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged.php
index 64416ea..88c3e0a 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged.php
@@ -9,19 +9,19 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
use Joomla\Registry\Registry;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Factory;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Linker;
-use VDM\Joomla\Utilities\GuidHelper;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Linker;
+use TrueChristianChurch\Joomla\Utilities\GuidHelper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged/Paragraphs.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged/Paragraphs.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged/Paragraphs.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged/Paragraphs.php
index 9b46749..31d48a8 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged/Paragraphs.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged/Paragraphs.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Tagged;
+namespace TrueChristianChurch\Joomla\GetBible\Tagged;
use Joomla\CMS\Router\Route;
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Tagged/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Tagged/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Http.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Http.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Http.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Http.php
index 52c3cd4..59ecacc 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Http.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Http.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Utilities;
+namespace TrueChristianChurch\Joomla\GetBible\Utilities;
use Joomla\CMS\Http\Http as JoomlaHttp;
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Response.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Response.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Response.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Response.php
index f818e72..692ccee 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Response.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Response.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Utilities;
+namespace TrueChristianChurch\Joomla\GetBible\Utilities;
use Joomla\Http\Response as JoomlaResponse;
-use VDM\Joomla\Utilities\JsonHelper;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\JsonHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/SessionHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/SessionHelper.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/SessionHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/SessionHelper.php
index cf010ee..02bf1b2 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/SessionHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/SessionHelper.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Utilities;
+namespace TrueChristianChurch\Joomla\GetBible\Utilities;
use Joomla\CMS\Factory as JoomlaFactory;
use Joomla\CMS\Session\Session;
-use VDM\Joomla\Utilities\GuidHelper;
+use TrueChristianChurch\Joomla\Utilities\GuidHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/StringHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/StringHelper.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/StringHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/StringHelper.php
index faad516..8925987 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/StringHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/StringHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Utilities;
+namespace TrueChristianChurch\Joomla\GetBible\Utilities;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Uri.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Uri.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Uri.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Uri.php
index 094555e..1fe9d77 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/Uri.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/Uri.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Utilities;
+namespace TrueChristianChurch\Joomla\GetBible\Utilities;
use Joomla\Uri\Uri as JoomlaUri;
-use VDM\Joomla\GetBible\Config;
+use TrueChristianChurch\Joomla\GetBible\Config;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Utilities/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Utilities/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher.php
index c88f4e2..0bb7729 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible;
+namespace TrueChristianChurch\Joomla\GetBible;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Watcher\Translation;
-use VDM\Joomla\GetBible\Watcher\Book;
-use VDM\Joomla\GetBible\Watcher\Chapter;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Translation;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Book;
+use TrueChristianChurch\Joomla\GetBible\Watcher\Chapter;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Book.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Book.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Book.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Book.php
index 77af22a..2d19b20 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Book.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Book.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Watcher;
+namespace TrueChristianChurch\Joomla\GetBible\Watcher;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Api\Books;
-use VDM\Joomla\GetBible\Abstraction\Watcher;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Api\Books;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Watcher;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Chapter.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Chapter.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Chapter.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Chapter.php
index c5e392f..874bbd1 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Chapter.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Chapter.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Watcher;
+namespace TrueChristianChurch\Joomla\GetBible\Watcher;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Api\Chapters;
-use VDM\Joomla\GetBible\Api\Verses;
-use VDM\Joomla\GetBible\Abstraction\Watcher;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Api\Chapters;
+use TrueChristianChurch\Joomla\GetBible\Api\Verses;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Watcher;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Translation.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Translation.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Translation.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Translation.php
index 0aa1a5a..0278b85 100644
--- a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/Translation.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/Translation.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\GetBible\Watcher;
+namespace TrueChristianChurch\Joomla\GetBible\Watcher;
-use VDM\Joomla\GetBible\Database\Load;
-use VDM\Joomla\GetBible\Database\Insert;
-use VDM\Joomla\GetBible\Database\Update;
-use VDM\Joomla\GetBible\Api\Translations;
-use VDM\Joomla\GetBible\Abstraction\Watcher;
+use TrueChristianChurch\Joomla\GetBible\Database\Load;
+use TrueChristianChurch\Joomla\GetBible\Database\Insert;
+use TrueChristianChurch\Joomla\GetBible\Database\Update;
+use TrueChristianChurch\Joomla\GetBible\Api\Translations;
+use TrueChristianChurch\Joomla\GetBible\Abstraction\Watcher;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/Watcher/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/Watcher/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.GetBible/src/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.GetBible/src/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible/src/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Abstraction/Api.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Abstraction/Api.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Abstraction/Api.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Abstraction/Api.php
index ecd5787..a79333a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Abstraction/Api.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Abstraction/Api.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Abstraction;
+namespace TrueChristianChurch\Joomla\Gitea\Abstraction;
-use VDM\Joomla\Gitea\Utilities\Http;
-use VDM\Joomla\Gitea\Utilities\Uri;
-use VDM\Joomla\Gitea\Utilities\Response;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Http;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Uri;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Response;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Abstraction/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Abstraction/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Abstraction/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Abstraction/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Cron.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Cron.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Cron.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Cron.php
index 04031c2..66b24d9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Cron.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Cron.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin;
+namespace TrueChristianChurch\Joomla\Gitea\Admin;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Organizations.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Organizations.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Organizations.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Organizations.php
index df1e6b4..b7337ad 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Organizations.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Organizations.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin;
+namespace TrueChristianChurch\Joomla\Gitea\Admin;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Unadopted.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Unadopted.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Unadopted.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Unadopted.php
index c73cf3e..7c523e1 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Unadopted.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Unadopted.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin;
+namespace TrueChristianChurch\Joomla\Gitea\Admin;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users.php
index 47ec3e5..8374926 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin;
+namespace TrueChristianChurch\Joomla\Gitea\Admin;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Keys.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Keys.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Keys.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Keys.php
index bea01de..33edd33 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Keys.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Keys.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin\Users;
+namespace TrueChristianChurch\Joomla\Gitea\Admin\Users;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Organization.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Organization.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Organization.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Organization.php
index ec1843f..1f1d4a9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Organization.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Organization.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin\Users;
+namespace TrueChristianChurch\Joomla\Gitea\Admin\Users;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Repository.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Repository.php
index bfade26..baa2326 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Admin\Users;
+namespace TrueChristianChurch\Joomla\Gitea\Admin\Users;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/Users/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/Users/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Admin/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Admin/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Factory.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Factory.php
similarity index 69%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Factory.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Factory.php
index 78918e8..156dd9b 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Factory.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Factory.php
@@ -9,22 +9,22 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
use Joomla\DI\Container;
-use VDM\Joomla\Gitea\Service\Utilities;
-use VDM\Joomla\Gitea\Service\Jcb;
-use VDM\Joomla\Gitea\Service\Settings;
-use VDM\Joomla\Gitea\Service\Organization;
-use VDM\Joomla\Gitea\Service\User;
-use VDM\Joomla\Gitea\Service\Repository;
-use VDM\Joomla\Gitea\Service\Package;
-use VDM\Joomla\Gitea\Service\Issue;
-use VDM\Joomla\Gitea\Service\Notifications;
-use VDM\Joomla\Gitea\Service\Miscellaneous;
-use VDM\Joomla\Gitea\Service\Admin;
-use VDM\Joomla\Interfaces\FactoryInterface;
+use TrueChristianChurch\Joomla\Gitea\Service\Utilities;
+use TrueChristianChurch\Joomla\Gitea\Service\Jcb;
+use TrueChristianChurch\Joomla\Gitea\Service\Settings;
+use TrueChristianChurch\Joomla\Gitea\Service\Organization;
+use TrueChristianChurch\Joomla\Gitea\Service\User;
+use TrueChristianChurch\Joomla\Gitea\Service\Repository;
+use TrueChristianChurch\Joomla\Gitea\Service\Package;
+use TrueChristianChurch\Joomla\Gitea\Service\Issue;
+use TrueChristianChurch\Joomla\Gitea\Service\Notifications;
+use TrueChristianChurch\Joomla\Gitea\Service\Miscellaneous;
+use TrueChristianChurch\Joomla\Gitea\Service\Admin;
+use TrueChristianChurch\Joomla\Interfaces\FactoryInterface;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue.php
index bfeb418..22d0b1c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Comments.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Comments.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Comments.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Comments.php
index c244035..8fdfa7e 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Comments.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Comments.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Deadline.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Deadline.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Deadline.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Deadline.php
index 6c13d07..7a3db25 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Deadline.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Deadline.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Labels.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Labels.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Labels.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Labels.php
index fda80dc..a8e1089 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Labels.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Labels.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Milestones.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Milestones.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Milestones.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Milestones.php
index 5178a73..aede981 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Milestones.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Milestones.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions.php
index 7595295..eacae5b 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions/Comment.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions/Comment.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions/Comment.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions/Comment.php
index 0f2ca78..775c356 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions/Comment.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions/Comment.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue\Reactions;
+namespace TrueChristianChurch\Joomla\Gitea\Issue\Reactions;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Reactions/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Reactions/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Repository/Comments.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Repository/Comments.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Repository/Comments.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Repository/Comments.php
index 3ca83fc..e391bfe 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Repository/Comments.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Repository/Comments.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Issue\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Repository/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Repository/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Repository/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Repository/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Stopwatch.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Stopwatch.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Stopwatch.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Stopwatch.php
index 6745416..9102de0 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Stopwatch.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Stopwatch.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Subscriptions.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Subscriptions.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Subscriptions.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Subscriptions.php
index c29bfb6..80726ae 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Subscriptions.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Subscriptions.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Timeline.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Timeline.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Timeline.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Timeline.php
index 4c54937..96ee597 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Timeline.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Timeline.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Times.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Times.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Times.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Times.php
index 7c33c2a..7f4834c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/Times.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/Times.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Issue;
+namespace TrueChristianChurch\Joomla\Gitea\Issue;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Issue/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Issue/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Labels.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Labels.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Labels.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Labels.php
index 43f2c9f..73cfd1d 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Labels.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Labels.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Activitypub.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Activitypub.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Activitypub.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Activitypub.php
index 78c6d27..af67853 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Activitypub.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Activitypub.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Miscellaneous;
+namespace TrueChristianChurch\Joomla\Gitea\Miscellaneous;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Gpg.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Gpg.php
similarity index 84%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Gpg.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Gpg.php
index 5a92c54..2cc4d86 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Gpg.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Gpg.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Miscellaneous;
+namespace TrueChristianChurch\Joomla\Gitea\Miscellaneous;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Markdown.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Markdown.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Markdown.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Markdown.php
index f6f54e5..4712110 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Markdown.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Markdown.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Miscellaneous;
+namespace TrueChristianChurch\Joomla\Gitea\Miscellaneous;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/NodeInfo.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/NodeInfo.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/NodeInfo.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/NodeInfo.php
index fe714b2..f164e47 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/NodeInfo.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/NodeInfo.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Miscellaneous;
+namespace TrueChristianChurch\Joomla\Gitea\Miscellaneous;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Version.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Version.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Version.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Version.php
index 696db50..50ca5d7 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/Version.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/Version.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Miscellaneous;
+namespace TrueChristianChurch\Joomla\Gitea\Miscellaneous;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Miscellaneous/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Miscellaneous/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications.php
index ffe33a8..ab2140a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Repository.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Repository.php
index 4520391..1f3abbd 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Notifications;
+namespace TrueChristianChurch\Joomla\Gitea\Notifications;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Thread.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Thread.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Thread.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Thread.php
index ae8daaa..38b1ae7 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/Thread.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/Thread.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Notifications;
+namespace TrueChristianChurch\Joomla\Gitea\Notifications;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Notifications/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Notifications/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization.php
index 0e7255c..f9fd950 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Hooks.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Hooks.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Hooks.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Hooks.php
index 981c065..3627d08 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Hooks.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Hooks.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Labels.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Labels.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Labels.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Labels.php
index 0836501..79897fb 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Labels.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Labels.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Members.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Members.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Members.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Members.php
index 97bf82b..d5b53cb 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Members.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Members.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/PublicMembers.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/PublicMembers.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/PublicMembers.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/PublicMembers.php
index c828532..94cf7b6 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/PublicMembers.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/PublicMembers.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Repository.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Repository.php
index 18c5384..45521af 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams.php
index 46a27b0..71ca4cf 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Members.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Members.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Members.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Members.php
index 89e9145..feb60a4 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Members.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Members.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization\Teams;
+namespace TrueChristianChurch\Joomla\Gitea\Organization\Teams;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Repository.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Repository.php
index f485c09..2b088b7 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization\Teams;
+namespace TrueChristianChurch\Joomla\Gitea\Organization\Teams;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/Teams/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/Teams/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/User.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/User.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/User.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/User.php
index b59fe9b..d8275a0 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/User.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/User.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Organization;
+namespace TrueChristianChurch\Joomla\Gitea\Organization;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Organization/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Organization/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Package.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package.php
index 8fb1ac2..6d3e9a9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Files.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Files.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Files.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Files.php
index c3851c0..0bdc8ec 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Files.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Files.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Package;
+namespace TrueChristianChurch\Joomla\Gitea\Package;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Owner.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Owner.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Owner.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Owner.php
index 93960d1..735d63d 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/Owner.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/Owner.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Package;
+namespace TrueChristianChurch\Joomla\Gitea\Package;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Package/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Package/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository.php
index c1e7126..1430f76 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Archive.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Archive.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Archive.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Archive.php
index 8cc3499..ccf53a1 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Archive.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Archive.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Assignees.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Assignees.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Assignees.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Assignees.php
index f6c8c75..6e72178 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Assignees.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Assignees.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Attachments.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Attachments.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Attachments.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Attachments.php
index 121da5d..e27ccc9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Attachments.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Attachments.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch.php
index 0936bbe..bc8806c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch/Protection.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch/Protection.php
similarity index 96%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch/Protection.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch/Protection.php
index 946bce2..8bb51a8 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch/Protection.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch/Protection.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository\Branch;
+namespace TrueChristianChurch\Joomla\Gitea\Repository\Branch;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Branch/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Branch/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Collaborator.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Collaborator.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Collaborator.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Collaborator.php
index 38ee512..291808a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Collaborator.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Collaborator.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Commits.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Commits.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Commits.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Commits.php
index d8142c2..6cfb747 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Commits.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Commits.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Contents.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Contents.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Contents.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Contents.php
index 3f2476b..08011ff 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Contents.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Contents.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Forks.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Forks.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Forks.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Forks.php
index 224e286..7e00ec9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Forks.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Forks.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Gpg.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Gpg.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Gpg.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Gpg.php
index 0a6c317..64af023 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Gpg.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Gpg.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks.php
index eadb2e6..24210a3 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks/Git.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks/Git.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks/Git.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks/Git.php
index 0b0a849..a4201fb 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks/Git.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks/Git.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository\Hooks;
+namespace TrueChristianChurch\Joomla\Gitea\Repository\Hooks;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Hooks/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Hooks/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Keys.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Keys.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Keys.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Keys.php
index 5e7757f..d55e50c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Keys.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Keys.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Languages.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Languages.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Languages.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Languages.php
index e4f4f0e..fba0822 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Languages.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Languages.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Media.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Media.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Media.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Media.php
index 74ea839..db6fc90 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Media.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Media.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Merge.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Merge.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Merge.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Merge.php
index 2b2cd2d..c8f1b66 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Merge.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Merge.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirror.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirror.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirror.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirror.php
index 37e3b57..7a6fd93 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirror.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirror.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirrors.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirrors.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirrors.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirrors.php
index 2dd60ed..3abd57a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Mirrors.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Mirrors.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Notes.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Notes.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Notes.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Notes.php
index 823d613..50b6d82 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Notes.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Notes.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Patch.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Patch.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Patch.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Patch.php
index d7d8007..46d7958 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Patch.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Patch.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Pulls.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Pulls.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Pulls.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Pulls.php
index a979e79..ebc70dc 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Pulls.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Pulls.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Refs.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Refs.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Refs.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Refs.php
index 6abc591..7944206 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Refs.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Refs.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Releases.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Releases.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Releases.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Releases.php
index 5723b56..f8b0e8f 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Releases.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Releases.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Remote.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Remote.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Remote.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Remote.php
index f1bf114..b18c13f 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Remote.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Remote.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviewers.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviewers.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviewers.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviewers.php
index ee0a4a0..3f0a53f 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviewers.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviewers.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviews.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviews.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviews.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviews.php
index 17e3ac3..6492632 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Reviews.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Reviews.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Stargazers.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Stargazers.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Stargazers.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Stargazers.php
index 0c72b6d..92a74a1 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Stargazers.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Stargazers.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Statuses.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Statuses.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Statuses.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Statuses.php
index ba6e3c1..f24bb18 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Statuses.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Statuses.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Tags.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Tags.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Tags.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Tags.php
index 600bfc2..c3e63c8 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Tags.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Tags.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Teams.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Teams.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Teams.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Teams.php
index cb39f7c..07c5e55 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Teams.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Teams.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Templates.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Templates.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Templates.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Templates.php
index 40246fc..61a780d 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Templates.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Templates.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Times.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Times.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Times.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Times.php
index bae1416..9b07901 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Times.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Times.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Topics.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Topics.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Topics.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Topics.php
index bbd24b8..cdb51fe 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Topics.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Topics.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Transfer.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Transfer.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Transfer.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Transfer.php
index b2e80be..110b305 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Transfer.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Transfer.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Trees.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Trees.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Trees.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Trees.php
index a9e1974..1a87a7e 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Trees.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Trees.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Watchers.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Watchers.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Watchers.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Watchers.php
index 131482a..40901b5 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Watchers.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Watchers.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Wiki.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Wiki.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Wiki.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Wiki.php
index 7488608..e0c21f9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/Wiki.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/Wiki.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Repository;
+namespace TrueChristianChurch\Joomla\Gitea\Repository;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Repository/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Repository/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Admin.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Admin.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Admin.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Admin.php
index e6fc518..14f7ffd 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Admin.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Admin.php
@@ -9,18 +9,18 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Admin\Cron;
-use VDM\Joomla\Gitea\Admin\Organizations;
-use VDM\Joomla\Gitea\Admin\Unadopted;
-use VDM\Joomla\Gitea\Admin\Users;
-use VDM\Joomla\Gitea\Admin\Users\Keys;
-use VDM\Joomla\Gitea\Admin\Users\Organization;
-use VDM\Joomla\Gitea\Admin\Users\Repository;
+use TrueChristianChurch\Joomla\Gitea\Admin\Cron;
+use TrueChristianChurch\Joomla\Gitea\Admin\Organizations;
+use TrueChristianChurch\Joomla\Gitea\Admin\Unadopted;
+use TrueChristianChurch\Joomla\Gitea\Admin\Users;
+use TrueChristianChurch\Joomla\Gitea\Admin\Users\Keys;
+use TrueChristianChurch\Joomla\Gitea\Admin\Users\Organization;
+use TrueChristianChurch\Joomla\Gitea\Admin\Users\Repository;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Issue.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Issue.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Issue.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Issue.php
index 9c49a5a..112cb9b 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Issue.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Issue.php
@@ -9,24 +9,24 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Issue as Issu;
-use VDM\Joomla\Gitea\Issue\Comments;
-use VDM\Joomla\Gitea\Issue\Repository\Comments as RepoComments;
-use VDM\Joomla\Gitea\Issue\Deadline;
-use VDM\Joomla\Gitea\Labels;
-use VDM\Joomla\Gitea\Issue\Labels as IssueLabels;
-use VDM\Joomla\Gitea\Issue\Milestones;
-use VDM\Joomla\Gitea\Issue\Reactions;
-use VDM\Joomla\Gitea\Issue\Reactions\Comment;
-use VDM\Joomla\Gitea\Issue\Stopwatch;
-use VDM\Joomla\Gitea\Issue\Subscriptions;
-use VDM\Joomla\Gitea\Issue\Timeline;
-use VDM\Joomla\Gitea\Issue\Times;
+use TrueChristianChurch\Joomla\Gitea\Issue as Issu;
+use TrueChristianChurch\Joomla\Gitea\Issue\Comments;
+use TrueChristianChurch\Joomla\Gitea\Issue\Repository\Comments as RepoComments;
+use TrueChristianChurch\Joomla\Gitea\Issue\Deadline;
+use TrueChristianChurch\Joomla\Gitea\Labels;
+use TrueChristianChurch\Joomla\Gitea\Issue\Labels as IssueLabels;
+use TrueChristianChurch\Joomla\Gitea\Issue\Milestones;
+use TrueChristianChurch\Joomla\Gitea\Issue\Reactions;
+use TrueChristianChurch\Joomla\Gitea\Issue\Reactions\Comment;
+use TrueChristianChurch\Joomla\Gitea\Issue\Stopwatch;
+use TrueChristianChurch\Joomla\Gitea\Issue\Subscriptions;
+use TrueChristianChurch\Joomla\Gitea\Issue\Timeline;
+use TrueChristianChurch\Joomla\Gitea\Issue\Times;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Jcb.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Jcb.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Jcb.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Jcb.php
index 7835275..3f57cda 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Jcb.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Jcb.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Utilities\Uri;
-use VDM\Joomla\Gitea\Utilities\Http;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Uri;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Http;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Miscellaneous.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Miscellaneous.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Miscellaneous.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Miscellaneous.php
index 14abf45..c8040dd 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Miscellaneous.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Miscellaneous.php
@@ -9,16 +9,16 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Miscellaneous\Activitypub;
-use VDM\Joomla\Gitea\Miscellaneous\Gpg;
-use VDM\Joomla\Gitea\Miscellaneous\Markdown;
-use VDM\Joomla\Gitea\Miscellaneous\NodeInfo;
-use VDM\Joomla\Gitea\Miscellaneous\Version;
+use TrueChristianChurch\Joomla\Gitea\Miscellaneous\Activitypub;
+use TrueChristianChurch\Joomla\Gitea\Miscellaneous\Gpg;
+use TrueChristianChurch\Joomla\Gitea\Miscellaneous\Markdown;
+use TrueChristianChurch\Joomla\Gitea\Miscellaneous\NodeInfo;
+use TrueChristianChurch\Joomla\Gitea\Miscellaneous\Version;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Notifications.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Notifications.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Notifications.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Notifications.php
index b6b5a29..fa57fd9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Notifications.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Notifications.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Notifications as Notifi;
-use VDM\Joomla\Gitea\Notifications\Repository;
-use VDM\Joomla\Gitea\Notifications\Thread;
+use TrueChristianChurch\Joomla\Gitea\Notifications as Notifi;
+use TrueChristianChurch\Joomla\Gitea\Notifications\Repository;
+use TrueChristianChurch\Joomla\Gitea\Notifications\Thread;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Organization.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Organization.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Organization.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Organization.php
index dab899e..3139ddb 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Organization.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Organization.php
@@ -9,21 +9,21 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Organization as Org;
-use VDM\Joomla\Gitea\Organization\Hooks;
-use VDM\Joomla\Gitea\Organization\Labels;
-use VDM\Joomla\Gitea\Organization\Members;
-use VDM\Joomla\Gitea\Organization\PublicMembers as PublicMembers;
-use VDM\Joomla\Gitea\Organization\Repository;
-use VDM\Joomla\Gitea\Organization\Teams;
-use VDM\Joomla\Gitea\Organization\Teams\Members as TeamsMembers;
-use VDM\Joomla\Gitea\Organization\Teams\Repository as TeamsRepository;
-use VDM\Joomla\Gitea\Organization\User;
+use TrueChristianChurch\Joomla\Gitea\Organization as Org;
+use TrueChristianChurch\Joomla\Gitea\Organization\Hooks;
+use TrueChristianChurch\Joomla\Gitea\Organization\Labels;
+use TrueChristianChurch\Joomla\Gitea\Organization\Members;
+use TrueChristianChurch\Joomla\Gitea\Organization\PublicMembers as PublicMembers;
+use TrueChristianChurch\Joomla\Gitea\Organization\Repository;
+use TrueChristianChurch\Joomla\Gitea\Organization\Teams;
+use TrueChristianChurch\Joomla\Gitea\Organization\Teams\Members as TeamsMembers;
+use TrueChristianChurch\Joomla\Gitea\Organization\Teams\Repository as TeamsRepository;
+use TrueChristianChurch\Joomla\Gitea\Organization\User;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Package.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Package.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Package.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Package.php
index 75d92cb..9cb8218 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Package.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Package.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Package as Pack;
-use VDM\Joomla\Gitea\Package\Files;
-use VDM\Joomla\Gitea\Package\Owner;
+use TrueChristianChurch\Joomla\Gitea\Package as Pack;
+use TrueChristianChurch\Joomla\Gitea\Package\Files;
+use TrueChristianChurch\Joomla\Gitea\Package\Owner;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Repository.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Repository.php
index dea2c31..f15aa5c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Repository.php
@@ -9,49 +9,49 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Repository as Repo;
-use VDM\Joomla\Gitea\Repository\Archive;
-use VDM\Joomla\Gitea\Repository\Assignees;
-use VDM\Joomla\Gitea\Repository\Attachments;
-use VDM\Joomla\Gitea\Repository\Branch;
-use VDM\Joomla\Gitea\Repository\Branch\Protection;
-use VDM\Joomla\Gitea\Repository\Collaborator;
-use VDM\Joomla\Gitea\Repository\Commits;
-use VDM\Joomla\Gitea\Repository\Contents;
-use VDM\Joomla\Gitea\Repository\Forks;
-use VDM\Joomla\Gitea\Repository\Gpg;
-use VDM\Joomla\Gitea\Repository\Hooks;
-use VDM\Joomla\Gitea\Repository\Hooks\Git;
-use VDM\Joomla\Gitea\Repository\Keys;
-use VDM\Joomla\Gitea\Repository\Languages;
-use VDM\Joomla\Gitea\Repository\Media;
-use VDM\Joomla\Gitea\Repository\Merge;
-use VDM\Joomla\Gitea\Repository\Mirror;
-use VDM\Joomla\Gitea\Repository\Mirrors;
-use VDM\Joomla\Gitea\Repository\Notes;
-use VDM\Joomla\Gitea\Repository\Patch;
-use VDM\Joomla\Gitea\Repository\Pulls;
-use VDM\Joomla\Gitea\Repository\Refs;
-use VDM\Joomla\Gitea\Repository\Releases;
-use VDM\Joomla\Gitea\Repository\Remote;
-use VDM\Joomla\Gitea\Repository\Reviewers;
-use VDM\Joomla\Gitea\Repository\Reviews;
-use VDM\Joomla\Gitea\Repository\Stargazers;
-use VDM\Joomla\Gitea\Repository\Statuses;
-use VDM\Joomla\Gitea\Repository\Tags;
-use VDM\Joomla\Gitea\Repository\Teams;
-use VDM\Joomla\Gitea\Repository\Templates;
-use VDM\Joomla\Gitea\Repository\Times;
-use VDM\Joomla\Gitea\Repository\Topics;
-use VDM\Joomla\Gitea\Repository\Transfer;
-use VDM\Joomla\Gitea\Repository\Trees;
-use VDM\Joomla\Gitea\Repository\Watchers;
-use VDM\Joomla\Gitea\Repository\Wiki;
+use TrueChristianChurch\Joomla\Gitea\Repository as Repo;
+use TrueChristianChurch\Joomla\Gitea\Repository\Archive;
+use TrueChristianChurch\Joomla\Gitea\Repository\Assignees;
+use TrueChristianChurch\Joomla\Gitea\Repository\Attachments;
+use TrueChristianChurch\Joomla\Gitea\Repository\Branch;
+use TrueChristianChurch\Joomla\Gitea\Repository\Branch\Protection;
+use TrueChristianChurch\Joomla\Gitea\Repository\Collaborator;
+use TrueChristianChurch\Joomla\Gitea\Repository\Commits;
+use TrueChristianChurch\Joomla\Gitea\Repository\Contents;
+use TrueChristianChurch\Joomla\Gitea\Repository\Forks;
+use TrueChristianChurch\Joomla\Gitea\Repository\Gpg;
+use TrueChristianChurch\Joomla\Gitea\Repository\Hooks;
+use TrueChristianChurch\Joomla\Gitea\Repository\Hooks\Git;
+use TrueChristianChurch\Joomla\Gitea\Repository\Keys;
+use TrueChristianChurch\Joomla\Gitea\Repository\Languages;
+use TrueChristianChurch\Joomla\Gitea\Repository\Media;
+use TrueChristianChurch\Joomla\Gitea\Repository\Merge;
+use TrueChristianChurch\Joomla\Gitea\Repository\Mirror;
+use TrueChristianChurch\Joomla\Gitea\Repository\Mirrors;
+use TrueChristianChurch\Joomla\Gitea\Repository\Notes;
+use TrueChristianChurch\Joomla\Gitea\Repository\Patch;
+use TrueChristianChurch\Joomla\Gitea\Repository\Pulls;
+use TrueChristianChurch\Joomla\Gitea\Repository\Refs;
+use TrueChristianChurch\Joomla\Gitea\Repository\Releases;
+use TrueChristianChurch\Joomla\Gitea\Repository\Remote;
+use TrueChristianChurch\Joomla\Gitea\Repository\Reviewers;
+use TrueChristianChurch\Joomla\Gitea\Repository\Reviews;
+use TrueChristianChurch\Joomla\Gitea\Repository\Stargazers;
+use TrueChristianChurch\Joomla\Gitea\Repository\Statuses;
+use TrueChristianChurch\Joomla\Gitea\Repository\Tags;
+use TrueChristianChurch\Joomla\Gitea\Repository\Teams;
+use TrueChristianChurch\Joomla\Gitea\Repository\Templates;
+use TrueChristianChurch\Joomla\Gitea\Repository\Times;
+use TrueChristianChurch\Joomla\Gitea\Repository\Topics;
+use TrueChristianChurch\Joomla\Gitea\Repository\Transfer;
+use TrueChristianChurch\Joomla\Gitea\Repository\Trees;
+use TrueChristianChurch\Joomla\Gitea\Repository\Watchers;
+use TrueChristianChurch\Joomla\Gitea\Repository\Wiki;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Settings.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Settings.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Settings.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Settings.php
index e4b1a7e..064dcb7 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Settings.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Settings.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Settings\Api;
-use VDM\Joomla\Gitea\Settings\Attachment;
-use VDM\Joomla\Gitea\Settings\Repository;
-use VDM\Joomla\Gitea\Settings\Ui;
+use TrueChristianChurch\Joomla\Gitea\Settings\Api;
+use TrueChristianChurch\Joomla\Gitea\Settings\Attachment;
+use TrueChristianChurch\Joomla\Gitea\Settings\Repository;
+use TrueChristianChurch\Joomla\Gitea\Settings\Ui;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/User.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/User.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/User.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/User.php
index 63bc120..c0c1262 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/User.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/User.php
@@ -9,25 +9,25 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\User as Usr;
-use VDM\Joomla\Gitea\User\Applications;
-use VDM\Joomla\Gitea\User\Emails;
-use VDM\Joomla\Gitea\User\Followers;
-use VDM\Joomla\Gitea\User\Following;
-use VDM\Joomla\Gitea\User\Gpg;
-use VDM\Joomla\Gitea\User\Keys;
-use VDM\Joomla\Gitea\User\Repos;
-use VDM\Joomla\Gitea\User\Settings;
-use VDM\Joomla\Gitea\User\Starred;
-use VDM\Joomla\Gitea\User\Subscriptions;
-use VDM\Joomla\Gitea\User\Teams;
-use VDM\Joomla\Gitea\User\Times;
-use VDM\Joomla\Gitea\User\Tokens;
+use TrueChristianChurch\Joomla\Gitea\User as Usr;
+use TrueChristianChurch\Joomla\Gitea\User\Applications;
+use TrueChristianChurch\Joomla\Gitea\User\Emails;
+use TrueChristianChurch\Joomla\Gitea\User\Followers;
+use TrueChristianChurch\Joomla\Gitea\User\Following;
+use TrueChristianChurch\Joomla\Gitea\User\Gpg;
+use TrueChristianChurch\Joomla\Gitea\User\Keys;
+use TrueChristianChurch\Joomla\Gitea\User\Repos;
+use TrueChristianChurch\Joomla\Gitea\User\Settings;
+use TrueChristianChurch\Joomla\Gitea\User\Starred;
+use TrueChristianChurch\Joomla\Gitea\User\Subscriptions;
+use TrueChristianChurch\Joomla\Gitea\User\Teams;
+use TrueChristianChurch\Joomla\Gitea\User\Times;
+use TrueChristianChurch\Joomla\Gitea\User\Tokens;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Utilities.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Utilities.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Utilities.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Utilities.php
index 06427b6..d83ff7e 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/Utilities.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/Utilities.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Service;
+namespace TrueChristianChurch\Joomla\Gitea\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Gitea\Utilities\Uri;
-use VDM\Joomla\Gitea\Utilities\Response;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Uri;
+use TrueChristianChurch\Joomla\Gitea\Utilities\Response;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Service/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Service/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Api.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Api.php
similarity index 84%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Api.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Api.php
index cf2d56f..6b58a54 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Api.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Api.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Settings;
+namespace TrueChristianChurch\Joomla\Gitea\Settings;
-use VDM\Joomla\Gitea\Abstraction\Api as BaseAPI;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api as BaseAPI;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Attachment.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Attachment.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Attachment.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Attachment.php
index 9219388..1c095a9 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Attachment.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Attachment.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Settings;
+namespace TrueChristianChurch\Joomla\Gitea\Settings;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Repository.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Repository.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Repository.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Repository.php
index adbf908..69a1dfa 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Repository.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Repository.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Settings;
+namespace TrueChristianChurch\Joomla\Gitea\Settings;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Ui.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Ui.php
similarity index 85%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Ui.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Ui.php
index def2668..8ea1f29 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/Ui.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/Ui.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Settings;
+namespace TrueChristianChurch\Joomla\Gitea\Settings;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Settings/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Settings/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User.php
index bb9c82e..9f3ae27 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea;
+namespace TrueChristianChurch\Joomla\Gitea;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Applications.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Applications.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Applications.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Applications.php
index 10d8dc6..7155c6a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Applications.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Applications.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Emails.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Emails.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Emails.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Emails.php
index aa63b28..fe5e192 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Emails.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Emails.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Followers.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Followers.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Followers.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Followers.php
index 71b028a..ebd4698 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Followers.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Followers.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Following.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Following.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Following.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Following.php
index 3392449..ee8b023 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Following.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Following.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Gpg.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Gpg.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Gpg.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Gpg.php
index bf8f6c6..3e5a813 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Gpg.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Gpg.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Keys.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Keys.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Keys.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Keys.php
index ed22c40..64f9bcd 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Keys.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Keys.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Repos.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Repos.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Repos.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Repos.php
index a7f8021..74dc8f3 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Repos.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Repos.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Settings.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Settings.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Settings.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Settings.php
index 2118c9e..042f84a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Settings.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Settings.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Starred.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Starred.php
similarity index 90%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Starred.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Starred.php
index 2414066..0930450 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Starred.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Starred.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Subscriptions.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Subscriptions.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Subscriptions.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Subscriptions.php
index b627803..b5afc6f 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Subscriptions.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Subscriptions.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Teams.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Teams.php
similarity index 88%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Teams.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Teams.php
index ce3f32b..7628af4 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Teams.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Teams.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Times.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Times.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Times.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Times.php
index 0274058..5d70d52 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Times.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Times.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Tokens.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Tokens.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Tokens.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Tokens.php
index 431ba71..5616e0f 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/Tokens.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/Tokens.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\User;
+namespace TrueChristianChurch\Joomla\Gitea\User;
-use VDM\Joomla\Gitea\Abstraction\Api;
+use TrueChristianChurch\Joomla\Gitea\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/User/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/User/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/User/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Http.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Http.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Http.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Http.php
index ea65e1c..c5786da 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Http.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Http.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Utilities;
+namespace TrueChristianChurch\Joomla\Gitea\Utilities;
use Joomla\CMS\Http\Http as JoomlaHttp;
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Response.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Response.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Response.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Response.php
index ed98fff..1aeed9d 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Response.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Response.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Utilities;
+namespace TrueChristianChurch\Joomla\Gitea\Utilities;
use Joomla\Http\Response as JoomlaResponse;
-use VDM\Joomla\Utilities\JsonHelper;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\JsonHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Uri.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Uri.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Uri.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Uri.php
index daa3add..65cac6a 100644
--- a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/Uri.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/Uri.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Gitea\Utilities;
+namespace TrueChristianChurch\Joomla\Gitea\Utilities;
use Joomla\Uri\Uri as JoomlaUri;
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/Utilities/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/Utilities/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Gitea/src/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Gitea/src/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea/src/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Openai/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Abstraction/Api.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Abstraction/Api.php
similarity index 80%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Abstraction/Api.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Abstraction/Api.php
index 2824706..5559521 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Abstraction/Api.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Abstraction/Api.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai\Abstraction;
+namespace TrueChristianChurch\Joomla\Openai\Abstraction;
-use VDM\Joomla\Openai\Utilities\Http;
-use VDM\Joomla\Openai\Utilities\Uri;
-use VDM\Joomla\Openai\Utilities\Response;
+use TrueChristianChurch\Joomla\Openai\Utilities\Http;
+use TrueChristianChurch\Joomla\Openai\Utilities\Uri;
+use TrueChristianChurch\Joomla\Openai\Utilities\Response;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Abstraction/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Abstraction/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Abstraction/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Abstraction/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Chat.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Chat.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Chat.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Chat.php
index deb9097..bf6a47c 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Chat.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Chat.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai;
+namespace TrueChristianChurch\Joomla\Openai;
-use VDM\Joomla\Openai\Abstraction\Api;
+use TrueChristianChurch\Joomla\Openai\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Completions.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Completions.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Completions.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Completions.php
index 65769df..28fe809 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Completions.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Completions.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai;
+namespace TrueChristianChurch\Joomla\Openai;
-use VDM\Joomla\Openai\Abstraction\Api;
+use TrueChristianChurch\Joomla\Openai\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Models.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Models.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Models.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Models.php
index 034cdd3..e9cba82 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Models.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Models.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai;
+namespace TrueChristianChurch\Joomla\Openai;
-use VDM\Joomla\Openai\Abstraction\Api;
+use TrueChristianChurch\Joomla\Openai\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Moderate.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Moderate.php
similarity index 89%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Moderate.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Moderate.php
index 5f02896..c3575ff 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Moderate.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Moderate.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai;
+namespace TrueChristianChurch\Joomla\Openai;
-use VDM\Joomla\Openai\Abstraction\Api;
+use TrueChristianChurch\Joomla\Openai\Abstraction\Api;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Service/Utilities.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Service/Utilities.php
similarity index 86%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Service/Utilities.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Service/Utilities.php
index b7f6a4c..d3629b8 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Service/Utilities.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Service/Utilities.php
@@ -9,15 +9,15 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai\Service;
+namespace TrueChristianChurch\Joomla\Openai\Service;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
-use VDM\Joomla\Openai\Utilities\Uri;
-use VDM\Joomla\Openai\Utilities\Response;
-use VDM\Joomla\Openai\Utilities\Http;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Openai\Utilities\Uri;
+use TrueChristianChurch\Joomla\Openai\Utilities\Response;
+use TrueChristianChurch\Joomla\Openai\Utilities\Http;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Service/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Service/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Service/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Service/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Http.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Http.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Http.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Http.php
index 6d0b705..abffe31 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Http.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Http.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai\Utilities;
+namespace TrueChristianChurch\Joomla\Openai\Utilities;
use Joomla\CMS\Http\Http as JoomlaHttp;
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Response.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Response.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Response.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Response.php
index 826f806..dac0282 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Response.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Response.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai\Utilities;
+namespace TrueChristianChurch\Joomla\Openai\Utilities;
use Joomla\Http\Response as JoomlaResponse;
-use VDM\Joomla\Utilities\JsonHelper;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\JsonHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Uri.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Uri.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Uri.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Uri.php
index ceeb5cd..8b45b39 100644
--- a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/Uri.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/Uri.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Openai\Utilities;
+namespace TrueChristianChurch\Joomla\Openai\Utilities;
use Joomla\Uri\Uri as JoomlaUri;
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/Utilities/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/Utilities/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla.Openai/src/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla.Openai/src/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai/src/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseConfig.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseConfig.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseConfig.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseConfig.php
index c4debc2..7405b0e 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseConfig.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseConfig.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Abstraction;
+namespace TrueChristianChurch\Joomla\Abstraction;
use Joomla\Registry\Registry as JoomlaRegistry;
-use VDM\Joomla\Utilities\String\ClassfunctionHelper;
+use TrueChristianChurch\Joomla\Utilities\String\ClassfunctionHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseTable.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseTable.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseTable.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseTable.php
index 468645b..c5104ea 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/BaseTable.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/BaseTable.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Abstraction;
+namespace TrueChristianChurch\Joomla\Abstraction;
-use VDM\Joomla\Interfaces\Tableinterface;
+use TrueChristianChurch\Joomla\Interfaces\Tableinterface;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/Database.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Database.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla/src/Abstraction/Database.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Database.php
index 7e2a216..6cb8cd4 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/Database.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Database.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Abstraction;
+namespace TrueChristianChurch\Joomla\Abstraction;
use Joomla\CMS\Factory as JoomlaFactory;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/Model.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Model.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla/src/Abstraction/Model.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Model.php
index 9321eef..99a2429 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/Model.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/Model.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Abstraction;
+namespace TrueChristianChurch\Joomla\Abstraction;
-use VDM\Joomla\Utilities\StringHelper;
-use VDM\Joomla\Utilities\ArrayHelper;
-use VDM\Joomla\Interfaces\Tableinterface as Table;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
+use TrueChristianChurch\Joomla\Interfaces\Tableinterface as Table;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Abstraction/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Abstraction/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Abstraction/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Database/Insert.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Insert.php
similarity index 92%
rename from libraries/jcb_powers/VDM.Joomla/src/Database/Insert.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Insert.php
index bf7611a..ac92695 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Database/Insert.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Insert.php
@@ -9,13 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Database;
+namespace TrueChristianChurch\Joomla\Database;
use Joomla\CMS\Date\Date;
-use VDM\Joomla\Utilities\ArrayHelper;
-use VDM\Joomla\Interfaces\InsertInterface;
-use VDM\Joomla\Abstraction\Database;
+use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
+use TrueChristianChurch\Joomla\Interfaces\InsertInterface;
+use TrueChristianChurch\Joomla\Abstraction\Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Database/Load.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Load.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Database/Load.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Load.php
index 620f99c..7d8bf81 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Database/Load.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Load.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Database;
+namespace TrueChristianChurch\Joomla\Database;
-use VDM\Joomla\Utilities\ArrayHelper;
-use VDM\Joomla\Interfaces\LoadInterface;
-use VDM\Joomla\Abstraction\Database;
+use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
+use TrueChristianChurch\Joomla\Interfaces\LoadInterface;
+use TrueChristianChurch\Joomla\Abstraction\Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Database/Update.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Update.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla/src/Database/Update.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Update.php
index 6c4a122..09ecf51 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Database/Update.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/Update.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Database;
+namespace TrueChristianChurch\Joomla\Database;
-use VDM\Joomla\Interfaces\UpdateInterface;
-use VDM\Joomla\Abstraction\Database;
+use TrueChristianChurch\Joomla\Interfaces\UpdateInterface;
+use TrueChristianChurch\Joomla\Abstraction\Database;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Database/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Database/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Database/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/FactoryInterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/FactoryInterface.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/FactoryInterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/FactoryInterface.php
index 0dd2e4c..accb082 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/FactoryInterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/FactoryInterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
use Joomla\DI\Container;
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/InsertInterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/InsertInterface.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/InsertInterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/InsertInterface.php
index c76b97b..deaaaee 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/InsertInterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/InsertInterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/LoadInterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/LoadInterface.php
similarity index 96%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/LoadInterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/LoadInterface.php
index 31017c5..82611f5 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/LoadInterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/LoadInterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/ModelInterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/ModelInterface.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/ModelInterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/ModelInterface.php
index 51f3424..ce0f2a0 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/ModelInterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/ModelInterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/Tableinterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/Tableinterface.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/Tableinterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/Tableinterface.php
index 4d8f741..567dd8f 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/Tableinterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/Tableinterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/UpdateInterface.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/UpdateInterface.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/UpdateInterface.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/UpdateInterface.php
index 3e43b16..fb506ad 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/UpdateInterface.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/UpdateInterface.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Interfaces;
+namespace TrueChristianChurch\Joomla\Interfaces;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Interfaces/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Interfaces/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Interfaces/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/ArrayHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ArrayHelper.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/ArrayHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ArrayHelper.php
index 70cc939..eb753f0 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/ArrayHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ArrayHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/Component/Helper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/Component/Helper.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/Component/Helper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/Component/Helper.php
index 5660a49..c35a5d5 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/Component/Helper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/Component/Helper.php
@@ -9,14 +9,14 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities\Component;
+namespace TrueChristianChurch\Joomla\Utilities\Component;
use Joomla\CMS\Factory;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\Input\Input;
use Joomla\Registry\Registry;
-use VDM\Joomla\Utilities\String\NamespaceHelper;
+use TrueChristianChurch\Joomla\Utilities\String\NamespaceHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/Component/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/Component/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/Component/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/Component/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/FileHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FileHelper.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/FileHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FileHelper.php
index 7d1dd0a..cc3741a 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/FileHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FileHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
use Joomla\CMS\Uri\Uri;
@@ -19,7 +19,7 @@ use Joomla\CMS\Filesystem\Path;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Filesystem\Folder;
use Joomla\Archive\Archive;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/FormHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FormHelper.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/FormHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FormHelper.php
index b21d71c..be2e0d9 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/FormHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/FormHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
use Joomla\CMS\Form\FormHelper as JoomlaFormHelper;
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/GetHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GetHelper.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/GetHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GetHelper.php
index 1f89e7b..9bb78ec 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/GetHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GetHelper.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
use Joomla\CMS\Factory;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/GuidHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GuidHelper.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/GuidHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GuidHelper.php
index 14a1148..6e90b11 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/GuidHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/GuidHelper.php
@@ -9,11 +9,11 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
use Joomla\CMS\Factory;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/JsonHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/JsonHelper.php
similarity index 93%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/JsonHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/JsonHelper.php
index 47fbd24..e85b3a7 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/JsonHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/JsonHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/ObjectHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ObjectHelper.php
similarity index 94%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/ObjectHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ObjectHelper.php
index 2646f7c..b603cb3 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/ObjectHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/ObjectHelper.php
@@ -9,7 +9,7 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/String/ClassfunctionHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/ClassfunctionHelper.php
similarity index 87%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/String/ClassfunctionHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/ClassfunctionHelper.php
index 42d21af..6080aba 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/String/ClassfunctionHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/ClassfunctionHelper.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities\String;
+namespace TrueChristianChurch\Joomla\Utilities\String;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/String/NamespaceHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/NamespaceHelper.php
similarity index 91%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/String/NamespaceHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/NamespaceHelper.php
index 55ee2e4..4632e66 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/String/NamespaceHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/NamespaceHelper.php
@@ -9,10 +9,10 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities\String;
+namespace TrueChristianChurch\Joomla\Utilities\String;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/String/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/String/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/String/index.html
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/StringHelper.php b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/StringHelper.php
similarity index 95%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/StringHelper.php
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/StringHelper.php
index fad2335..b64bef9 100644
--- a/libraries/jcb_powers/VDM.Joomla/src/Utilities/StringHelper.php
+++ b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/StringHelper.php
@@ -9,12 +9,12 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
-namespace VDM\Joomla\Utilities;
+namespace TrueChristianChurch\Joomla\Utilities;
use Joomla\CMS\Filter\InputFilter;
use Joomla\CMS\Language\Language;
-use VDM\Joomla\Utilities\Component\Helper;
+use TrueChristianChurch\Joomla\Utilities\Component\Helper;
/**
diff --git a/libraries/jcb_powers/VDM.Joomla/src/Utilities/index.html b/libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/index.html
similarity index 100%
rename from libraries/jcb_powers/VDM.Joomla/src/Utilities/index.html
rename to libraries/vendor_getbible/TrueChristianChurch.Joomla/src/Utilities/index.html
diff --git a/libraries/jcb_powers/htaccess.txt b/libraries/vendor_getbible/htaccess.txt
similarity index 100%
rename from libraries/jcb_powers/htaccess.txt
rename to libraries/vendor_getbible/htaccess.txt
diff --git a/libraries/jcb_powers/index.html b/libraries/vendor_getbible/index.html
similarity index 100%
rename from libraries/jcb_powers/index.html
rename to libraries/vendor_getbible/index.html
diff --git a/libraries/jcb_powers/web.config b/libraries/vendor_getbible/web.config
similarity index 100%
rename from libraries/jcb_powers/web.config
rename to libraries/vendor_getbible/web.config
diff --git a/site/layouts/modal.php b/site/layouts/modal.php
index 3c79df5..13b03ce 100644
--- a/site/layouts/modal.php
+++ b/site/layouts/modal.php
@@ -22,7 +22,7 @@ use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
// No direct access to this file
defined('JPATH_BASE') or die;
diff --git a/site/layouts/table.php b/site/layouts/table.php
index e787594..054fcb5 100644
--- a/site/layouts/table.php
+++ b/site/layouts/table.php
@@ -22,7 +22,7 @@ use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Component\Getbible\Site\Helper\GetbibleHelper;
-use VDM\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
// No direct access to this file
defined('JPATH_BASE') or die;
diff --git a/site/src/Controller/DisplayController.php b/site/src/Controller/DisplayController.php
index bc422e6..bd40099 100644
--- a/site/src/Controller/DisplayController.php
+++ b/site/src/Controller/DisplayController.php
@@ -21,8 +21,8 @@ use Joomla\CMS\MVC\Controller\BaseController;
use Joomla\CMS\Router\Route;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Language\Text;
-use VDM\Joomla\Utilities\StringHelper;
-use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
+use TrueChristianChurch\Joomla\Utilities\StringHelper;
+use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
// No direct access to this file
\defined('_JEXEC') or die;
diff --git a/site/src/Field/LinkersField.php b/site/src/Field/LinkersField.php
index f34c444..b74fb88 100644
--- a/site/src/Field/LinkersField.php
+++ b/site/src/Field/LinkersField.php
@@ -102,7 +102,7 @@ class LinkersField extends ListField
if ($user->authorise('linker.edit', 'com_getbible') && $app->isClient('administrator')) // TODO for now only in admin area.
{
// build edit button
- $button[] = '