diff --git a/composer.json b/composer.json index b496ddb..cca7908 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { - "name": "mirzaev/deeproots", + "name": "deeproots/deeproots", "description": "", - "homepage": "https://git.svoboda.works/mirzaev/deeproots", + "homepage": "https://git.svoboda.works/deeproots/deeproots", "type": "site", "keywords": [ "minimal", @@ -15,11 +15,20 @@ "email": "mirzaev@gmail.com", "homepage": "https://mirzaev.page", "role": "Programmer" + }, + { + "name": "lfclouds", + "role": "Programmer" + }, + { + "name": "veganarchist89", + "email": "kgoel89@gmail.com", + "role": "Programmer" } ], "support": { - "wiki": "https://git.svoboda.works/mirzaev/deeproots/wiki", - "issues": "https://git.svoboda.works/mirzaev/deeproots/issues" + "wiki": "https://git.svoboda.works/deeproots/deeproots/wiki", + "issues": "https://git.svoboda.works/deeproots/deeproots/issues" }, "require": { "php": "^8.4", @@ -36,12 +45,12 @@ }, "autoload": { "psr-4": { - "mirzaev\\deeproots\\": "mirzaev/deeproots/system" + "deeproots\\deeproots\\": "deeproots/deeproots/system" } }, "autoload-dev": { "psr-4": { - "mirzaev\\deeproots\\tests\\": "mirzaev/deeproots/tests" + "deeproots\\deeproots\\tests\\": "deeproots/deeproots/tests" } }, "scripts": { diff --git a/mirzaev/deeproots/system/controllers/core.php b/deeproots/deeproots/system/controllers/core.php similarity index 92% rename from mirzaev/deeproots/system/controllers/core.php rename to deeproots/deeproots/system/controllers/core.php index 149724c..2a24f2e 100755 --- a/mirzaev/deeproots/system/controllers/core.php +++ b/deeproots/deeproots/system/controllers/core.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace mirzaev\deeproots\controllers; +namespace deeproots\deeproots\controllers; // Files of the project -use mirzaev\deeproots\models\core as models; +use deeproots\deeproots\models\core as models; // Framework for PHP use mirzaev\minimal\core as minimal, @@ -16,7 +16,7 @@ use mirzaev\minimal\core as minimal, /** * Controllers core * - * @package mirzaev\deeproots\controllers + * @package deeproots\deeproots\controllers * * @param language $language Language * @param response $response Response diff --git a/mirzaev/deeproots/system/controllers/index.php b/deeproots/deeproots/system/controllers/index.php similarity index 91% rename from mirzaev/deeproots/system/controllers/index.php rename to deeproots/deeproots/system/controllers/index.php index ee60166..f84d301 100755 --- a/mirzaev/deeproots/system/controllers/index.php +++ b/deeproots/deeproots/system/controllers/index.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace mirzaev\deeproots\controllers; +namespace deeproots\deeproots\controllers; // Files of the project -use mirzaev\deeproots\controllers\core; +use deeproots\deeproots\controllers\core; // Framework for PHP use mirzaev\minimal\http\enumerations\content, @@ -14,7 +14,7 @@ use mirzaev\minimal\http\enumerations\content, /** * Index * - * @package mirzaev\deeproots\controllers + * @package deeproots\deeproots\controllers * * @param array $errors Registry of errors * diff --git a/mirzaev/deeproots/system/databases/.gitignore b/deeproots/deeproots/system/databases/.gitignore similarity index 100% rename from mirzaev/deeproots/system/databases/.gitignore rename to deeproots/deeproots/system/databases/.gitignore diff --git a/mirzaev/deeproots/system/localizations/english.php b/deeproots/deeproots/system/localizations/english.php similarity index 100% rename from mirzaev/deeproots/system/localizations/english.php rename to deeproots/deeproots/system/localizations/english.php diff --git a/mirzaev/deeproots/system/localizations/russian.php b/deeproots/deeproots/system/localizations/russian.php similarity index 100% rename from mirzaev/deeproots/system/localizations/russian.php rename to deeproots/deeproots/system/localizations/russian.php diff --git a/mirzaev/deeproots/system/models/account.php b/deeproots/deeproots/system/models/account.php similarity index 92% rename from mirzaev/deeproots/system/models/account.php rename to deeproots/deeproots/system/models/account.php index 13cffc1..63e9864 100755 --- a/mirzaev/deeproots/system/models/account.php +++ b/deeproots/deeproots/system/models/account.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\connection, - mirzaev\deeproots\models\telegram, - mirzaev\deeproots\models\enumerations\language, - mirzaev\deeproots\models\account\localization; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\connection, + deeproots\deeproots\models\telegram, + deeproots\deeproots\models\enumerations\language, + deeproots\deeproots\models\account\localization; // Svoboda time use svoboda\time\statement as svoboda; @@ -28,7 +28,7 @@ use Exception as exception, /** * Account * - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich @@ -60,6 +60,11 @@ final class account extends core $this->database = new database() ->encoding(encoding::utf8) ->columns( + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('identifier', type::long_long_unsigned), new column('name', type::string, ['length' => 64]), new column('language', type::string, ['length' => 2]), diff --git a/mirzaev/deeproots/system/models/answer.php b/deeproots/deeproots/system/models/answer.php similarity index 84% rename from mirzaev/deeproots/system/models/answer.php rename to deeproots/deeproots/system/models/answer.php index fc87d5a..9bf4a03 100755 --- a/mirzaev/deeproots/system/models/answer.php +++ b/deeproots/deeproots/system/models/answer.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\enumerations\language; // Svoboda time use svoboda\time\statement as svoboda; @@ -27,7 +27,7 @@ use Exception as exception, * Answer * * @uses question - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich @@ -61,6 +61,11 @@ final class answer extends core $this->database = new database() ->encoding(encoding::ascii) ->columns( + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('identifier', type::long_long_unsigned), new column('A', type::char), new column('B', type::char), diff --git a/mirzaev/deeproots/system/models/connection.php b/deeproots/deeproots/system/models/connection.php similarity index 87% rename from mirzaev/deeproots/system/models/connection.php rename to deeproots/deeproots/system/models/connection.php index 0ee2b05..f794a74 100755 --- a/mirzaev/deeproots/system/models/connection.php +++ b/deeproots/deeproots/system/models/connection.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Files of the project -use mirzaev\deeproots\models\core; +use deeproots\deeproots\models\core; // Svoboda time use svoboda\time\statement as svoboda; @@ -27,7 +27,7 @@ use Exception as exception, /** * Connection between account::class and telegram::class * - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich @@ -67,6 +67,11 @@ final class connection extends core ->columns( new column('identifier', type::integer_unsigned), new column('account', type::integer_unsigned), + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('telegram', type::long_long_unsigned), new column('active', type::char), new column('updated', type::integer_unsigned), diff --git a/mirzaev/deeproots/system/models/core.php b/deeproots/deeproots/system/models/core.php similarity index 90% rename from mirzaev/deeproots/system/models/core.php rename to deeproots/deeproots/system/models/core.php index d9472a6..341b797 100755 --- a/mirzaev/deeproots/system/models/core.php +++ b/deeproots/deeproots/system/models/core.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Framework for PHP use mirzaev\minimal\model, @@ -14,7 +14,7 @@ use exception; /** * Models core * - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @method void __construct() Constructor * diff --git a/mirzaev/deeproots/system/models/enumerations/language.php b/deeproots/deeproots/system/models/enumerations/language.php similarity index 94% rename from mirzaev/deeproots/system/models/enumerations/language.php rename to deeproots/deeproots/system/models/enumerations/language.php index c52ec84..118d068 100755 --- a/mirzaev/deeproots/system/models/enumerations/language.php +++ b/deeproots/deeproots/system/models/enumerations/language.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\enumerations; +namespace deeproots\deeproots\models\enumerations; /** * Language * * Types of languages by ISO 639-1 standart @deprecated * - * @package mirzaev\deeproots\models\enumerations + * @package deeproots\deeproots\models\enumerations * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/question.php b/deeproots/deeproots/system/models/question.php similarity index 90% rename from mirzaev/deeproots/system/models/question.php rename to deeproots/deeproots/system/models/question.php index 1de11e2..f45567a 100755 --- a/mirzaev/deeproots/system/models/question.php +++ b/deeproots/deeproots/system/models/question.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question\localization, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question\localization, + deeproots\deeproots\models\enumerations\language; // Svoboda time use svoboda\time\statement as svoboda; @@ -27,7 +27,7 @@ use Exception as exception, * Question * * @uses localization - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/question/localization.php b/deeproots/deeproots/system/models/question/localization.php similarity index 84% rename from mirzaev/deeproots/system/models/question/localization.php rename to deeproots/deeproots/system/models/question/localization.php index dd93c61..fdccde2 100755 --- a/mirzaev/deeproots/system/models/question/localization.php +++ b/deeproots/deeproots/system/models/question/localization.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\question; +namespace deeproots\deeproots\models\question; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\enumerations\language; // Svoboda time use svoboda\time\statement as svoboda; @@ -27,7 +27,7 @@ use Exception as exception, * Question localization * * @uses question - * @package mirzaev\deeproots\models\question + * @package deeproots\deeproots\models\question * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich @@ -61,6 +61,11 @@ final class localization extends core $this->database = new database() ->encoding(encoding::ascii) ->columns( + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('identifier', type::long_long_unsigned), new column('text', type::string, ['length' => 256]), new column('A', type::string, ['length' => 128]), diff --git a/mirzaev/deeproots/system/models/telegram.php b/deeproots/deeproots/system/models/telegram.php similarity index 91% rename from mirzaev/deeproots/system/models/telegram.php rename to deeproots/deeproots/system/models/telegram.php index c025a40..a7043b4 100755 --- a/mirzaev/deeproots/system/models/telegram.php +++ b/deeproots/deeproots/system/models/telegram.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models; +namespace deeproots\deeproots\models; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\account\localization; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\account\localization; // Svoboda time use svoboda\time\statement as svoboda; @@ -28,7 +28,7 @@ use Exception as exception, /** * Telegram account * - * @package mirzaev\deeproots\models + * @package deeproots\deeproots\models * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich @@ -60,6 +60,11 @@ final class telegram extends core $this->database = new database() ->encoding(encoding::utf8) ->columns( + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('identifier', type::long_long_unsigned), new column('domain', type::string, ['length' => 32]), new column('name_first', type::string, ['length' => 64]), @@ -95,7 +100,7 @@ final class telegram extends core if ( $account->name_first !== $telegram->getFirstName() || - $account->name_second !== $telegram->getLastName() || + $account->name_second !== (string) $telegram->getLastName() || $account->domain !== $telegram->getUsername() ) { // The telegram account was updated diff --git a/mirzaev/deeproots/system/models/telegram/buttons/account/localization/create.php b/deeproots/deeproots/system/models/telegram/buttons/account/localization/create.php similarity index 100% rename from mirzaev/deeproots/system/models/telegram/buttons/account/localization/create.php rename to deeproots/deeproots/system/models/telegram/buttons/account/localization/create.php diff --git a/mirzaev/deeproots/system/models/telegram/buttons/account/localization/update.php b/deeproots/deeproots/system/models/telegram/buttons/account/localization/update.php similarity index 100% rename from mirzaev/deeproots/system/models/telegram/buttons/account/localization/update.php rename to deeproots/deeproots/system/models/telegram/buttons/account/localization/update.php diff --git a/mirzaev/deeproots/system/models/telegram/buttons/question/search.php b/deeproots/deeproots/system/models/telegram/buttons/question/search.php similarity index 98% rename from mirzaev/deeproots/system/models/telegram/buttons/question/search.php rename to deeproots/deeproots/system/models/telegram/buttons/question/search.php index 29b50d6..1a9828b 100755 --- a/mirzaev/deeproots/system/models/telegram/buttons/question/search.php +++ b/deeproots/deeproots/system/models/telegram/buttons/question/search.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\buttons\question; +namespace deeproots\deeproots\models\telegram\buttons\question; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\telegram\processes\question\search as process_question_search, - mirzaev\deeproots\models\enumerations\membership\status; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\telegram\processes\question\search as process_question_search, + deeproots\deeproots\models\enumerations\membership\status; // Framework for Telegram use Zanzara\Context as context, @@ -23,7 +23,7 @@ use mirzaev\baza\record; /** * Telegram system question search buttons * - * @package mirzaev\deeproots\models\telegram\buttons\question + * @package deeproots\deeproots\models\telegram\buttons\question * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/commands.php b/deeproots/deeproots/system/models/telegram/commands.php similarity index 98% rename from mirzaev/deeproots/system/models/telegram/commands.php rename to deeproots/deeproots/system/models/telegram/commands.php index e50feaf..35e59eb 100755 --- a/mirzaev/deeproots/system/models/telegram/commands.php +++ b/deeproots/deeproots/system/models/telegram/commands.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram; +namespace deeproots\deeproots\models\telegram; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\account, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\question\localization as question_localization, - mirzaev\deeproots\models\answer, - mirzaev\deeproots\models\telegram\processes\language\select as process_language_select, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\account, + deeproots\deeproots\models\question, + deeproots\deeproots\models\question\localization as question_localization, + deeproots\deeproots\models\answer, + deeproots\deeproots\models\telegram\processes\language\select as process_language_select, + deeproots\deeproots\models\enumerations\language; // Framework for Telegram use Zanzara\Context as context, @@ -24,7 +24,7 @@ use mirzaev\baza\record; /** * Telegram commands * - * @package mirzaev\deeproots\models\telegram + * @package deeproots\deeproots\models\telegram * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/middlewares.php b/deeproots/deeproots/system/models/telegram/middlewares.php similarity index 98% rename from mirzaev/deeproots/system/models/telegram/middlewares.php rename to deeproots/deeproots/system/models/telegram/middlewares.php index b4306ef..39333d5 100755 --- a/mirzaev/deeproots/system/models/telegram/middlewares.php +++ b/deeproots/deeproots/system/models/telegram/middlewares.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram; +namespace deeproots\deeproots\models\telegram; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\account, - mirzaev\deeproots\models\telegram, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\account, + deeproots\deeproots\models\telegram, + deeproots\deeproots\models\enumerations\language; // Framework for Telegram use Zanzara\Context as context, @@ -24,7 +24,7 @@ use Error as error; /** * Telegram middlewares * - * @package mirzaev\deeproots\models\telegram + * @package deeproots\deeproots\models\telegram * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/processes/language/select.php b/deeproots/deeproots/system/models/telegram/processes/language/select.php similarity index 96% rename from mirzaev/deeproots/system/models/telegram/processes/language/select.php rename to deeproots/deeproots/system/models/telegram/processes/language/select.php index 07b0d7d..b295266 100755 --- a/mirzaev/deeproots/system/models/telegram/processes/language/select.php +++ b/deeproots/deeproots/system/models/telegram/processes/language/select.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\processes\language; +namespace deeproots\deeproots\models\telegram\processes\language; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\enumerations\language; // Framework for Telegram use Zanzara\Context as context, @@ -18,7 +18,7 @@ use mirzaev\baza\record; /** * Telegram language select * - * @package mirzaev\deeproots\models\telegram\processes\language + * @package deeproots\deeproots\models\telegram\processes\language * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/processes/question/create.php b/deeproots/deeproots/system/models/telegram/processes/question/create.php similarity index 87% rename from mirzaev/deeproots/system/models/telegram/processes/question/create.php rename to deeproots/deeproots/system/models/telegram/processes/question/create.php index 4920438..29d6057 100755 --- a/mirzaev/deeproots/system/models/telegram/processes/question/create.php +++ b/deeproots/deeproots/system/models/telegram/processes/question/create.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\processes\question; +namespace deeproots\deeproots\models\telegram\processes\question; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\question\localization, - mirzaev\deeproots\models\answer, - mirzaev\deeproots\models\enumerations\language, - mirzaev\deeproots\models\telegram\commands, - mirzaev\deeproots\models\telegram\processes\question\search as process_question_search; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\question\localization, + deeproots\deeproots\models\answer, + deeproots\deeproots\models\enumerations\language, + deeproots\deeproots\models\telegram\commands, + deeproots\deeproots\models\telegram\processes\question\search as process_question_search; // Framework for Telegram use Zanzara\Context as context, @@ -23,7 +23,7 @@ use mirzaev\baza\record; /** * Question create (system) * - * @package mirzaev\deeproots\models\telegram\processes\question + * @package deeproots\deeproots\models\telegram\processes\question * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/processes/question/localization/create.php b/deeproots/deeproots/system/models/telegram/processes/question/localization/create.php similarity index 99% rename from mirzaev/deeproots/system/models/telegram/processes/question/localization/create.php rename to deeproots/deeproots/system/models/telegram/processes/question/localization/create.php index 63dc6b3..09d0b14 100755 --- a/mirzaev/deeproots/system/models/telegram/processes/question/localization/create.php +++ b/deeproots/deeproots/system/models/telegram/processes/question/localization/create.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\processes\question\localization; +namespace deeproots\deeproots\models\telegram\processes\question\localization; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\question\localization, - mirzaev\deeproots\models\answer, - mirzaev\deeproots\models\enumerations\language, - mirzaev\deeproots\models\telegram\commands; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\question\localization, + deeproots\deeproots\models\answer, + deeproots\deeproots\models\enumerations\language, + deeproots\deeproots\models\telegram\commands; // Framework for Telegram use Zanzara\Context as context, @@ -22,7 +22,7 @@ use mirzaev\baza\record; /** * Question localization create (system) * - * @package mirzaev\deeproots\models\telegram\processes\question\localization + * @package deeproots\deeproots\models\telegram\processes\question\localization * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/processes/question/search.php b/deeproots/deeproots/system/models/telegram/processes/question/search.php similarity index 99% rename from mirzaev/deeproots/system/models/telegram/processes/question/search.php rename to deeproots/deeproots/system/models/telegram/processes/question/search.php index 4448e4f..b66a20e 100755 --- a/mirzaev/deeproots/system/models/telegram/processes/question/search.php +++ b/deeproots/deeproots/system/models/telegram/processes/question/search.php @@ -2,17 +2,17 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\processes\question; +namespace deeproots\deeproots\models\telegram\processes\question; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\question, - mirzaev\deeproots\models\question\localization as question_localization, - mirzaev\deeproots\models\answer, - mirzaev\deeproots\models\enumerations\language, - mirzaev\deeproots\models\telegram\commands, - mirzaev\deeproots\models\telegram\buttons\question\search as buttons_question_search, - mirzaev\deeproots\models\telegram\traits\escape; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\question, + deeproots\deeproots\models\question\localization as question_localization, + deeproots\deeproots\models\answer, + deeproots\deeproots\models\enumerations\language, + deeproots\deeproots\models\telegram\commands, + deeproots\deeproots\models\telegram\buttons\question\search as buttons_question_search, + deeproots\deeproots\models\telegram\traits\escape; // Baza database use mirzaev\baza\record; @@ -27,7 +27,7 @@ use function React\Async\await; /** * Question create (system) * - * @package mirzaev\deeproots\models\telegram\processes\question + * @package deeproots\deeproots\models\telegram\processes\question * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/settings.php b/deeproots/deeproots/system/models/telegram/settings.php similarity index 95% rename from mirzaev/deeproots/system/models/telegram/settings.php rename to deeproots/deeproots/system/models/telegram/settings.php index fc43b30..19ba72b 100755 --- a/mirzaev/deeproots/system/models/telegram/settings.php +++ b/deeproots/deeproots/system/models/telegram/settings.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram; +namespace deeproots\deeproots\models\telegram; // Files of the project -use mirzaev\deeproots\models\core, - mirzaev\deeproots\models\account, - mirzaev\deeproots\models\enumerations\language, - mirzaev\deeproots\models\telegram\middlewares; +use deeproots\deeproots\models\core, + deeproots\deeproots\models\account, + deeproots\deeproots\models\enumerations\language, + deeproots\deeproots\models\telegram\middlewares; // Framework for Telegram use Zanzara\Zanzara, @@ -25,7 +25,7 @@ use Error as error; /** * Telegram settings * - * @package mirzaev\deeproots\models\telegram + * @package deeproots\deeproots\models\telegram * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/models/telegram/traits/escape.php b/deeproots/deeproots/system/models/telegram/traits/escape.php similarity index 91% rename from mirzaev/deeproots/system/models/telegram/traits/escape.php rename to deeproots/deeproots/system/models/telegram/traits/escape.php index 93625ce..4ec7c52 100644 --- a/mirzaev/deeproots/system/models/telegram/traits/escape.php +++ b/deeproots/deeproots/system/models/telegram/traits/escape.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace mirzaev\deeproots\models\telegram\traits; +namespace deeproots\deeproots\models\telegram\traits; /** * Escape * - * @package mirzaev\deeproots\models\telegram\traits + * @package deeproots\deeproots\models\telegram\traits * * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License * @author Arsen Mirzaev Tatyano-Muradovich diff --git a/mirzaev/deeproots/system/public/css/fonts/dejavu.css b/deeproots/deeproots/system/public/css/fonts/dejavu.css similarity index 100% rename from mirzaev/deeproots/system/public/css/fonts/dejavu.css rename to deeproots/deeproots/system/public/css/fonts/dejavu.css diff --git a/mirzaev/deeproots/system/public/css/fonts/fira.css b/deeproots/deeproots/system/public/css/fonts/fira.css similarity index 100% rename from mirzaev/deeproots/system/public/css/fonts/fira.css rename to deeproots/deeproots/system/public/css/fonts/fira.css diff --git a/mirzaev/deeproots/system/public/css/fonts/hack.css b/deeproots/deeproots/system/public/css/fonts/hack.css similarity index 100% rename from mirzaev/deeproots/system/public/css/fonts/hack.css rename to deeproots/deeproots/system/public/css/fonts/hack.css diff --git a/mirzaev/deeproots/system/public/fonts/commissioner.ttf b/deeproots/deeproots/system/public/fonts/commissioner.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/commissioner.ttf rename to deeproots/deeproots/system/public/fonts/commissioner.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Bold.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Oblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Oblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Oblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans-Oblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSans.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSans.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansCondensed.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSansMono.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Bold.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Bold.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Bold.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Bold.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Italic.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Italic.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Italic.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif-Italic.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerif.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf diff --git a/mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed.ttf b/deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed.ttf similarity index 100% rename from mirzaev/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed.ttf rename to deeproots/deeproots/system/public/fonts/dejavu/DejaVuLGCSerifCondensed.ttf diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Bold.woff b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Bold.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Bold.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Bold.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Bold.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Bold.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Bold.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Bold.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Medium.woff b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Medium.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Medium.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Medium.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Medium.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Medium.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Medium.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Medium.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Regular.woff b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Regular.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Regular.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Regular.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraMono-Regular.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraMono-Regular.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraMono-Regular.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraMono-Regular.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Bold.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Bold.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Bold.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Bold.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Bold.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Bold.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Bold.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Bold.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-BoldItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Book.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Book.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Book.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Book.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Book.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Book.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Book.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Book.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-BookItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Eight.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Eight.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Eight.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Eight.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Eight.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Eight.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Eight.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Eight.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-EightItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBold.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraBoldItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLight.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ExtraLightItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Four.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Four.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Four.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Four.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Four.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Four.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Four.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Four.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-FourItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Hair.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Hair.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Hair.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Hair.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Hair.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Hair.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Hair.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Hair.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-HairItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Heavy.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-HeavyItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Italic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Italic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Italic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Italic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Italic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Italic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Italic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Italic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Light.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Light.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Light.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Light.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Light.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Light.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Light.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Light.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-LightItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Medium.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Medium.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Medium.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Medium.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Medium.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Medium.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Medium.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Medium.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-MediumItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Regular.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Regular.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Regular.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Regular.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Regular.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Regular.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Regular.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Regular.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBold.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-SemiBoldItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Thin.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Thin.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Thin.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Thin.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Thin.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Thin.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Thin.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Thin.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-ThinItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Two.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Two.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Two.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Two.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Two.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Two.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Two.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Two.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-TwoItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-Ultra.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLight.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff2 b/deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff2 rename to deeproots/deeproots/system/public/fonts/fira/FiraSans-UltraLightItalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bold-subset.woff b/deeproots/deeproots/system/public/fonts/hack/hack-bold-subset.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bold-subset.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-bold-subset.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bold-subset.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-bold-subset.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bold-subset.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-bold-subset.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bold.woff b/deeproots/deeproots/system/public/fonts/hack/hack-bold.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bold.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-bold.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bold.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-bold.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bold.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-bold.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff b/deeproots/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-bolditalic-subset.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic.woff b/deeproots/deeproots/system/public/fonts/hack/hack-bolditalic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-bolditalic.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-bolditalic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-bolditalic.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-bolditalic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-italic-subset.woff b/deeproots/deeproots/system/public/fonts/hack/hack-italic-subset.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-italic-subset.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-italic-subset.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-italic-subset.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-italic-subset.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-italic-subset.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-italic-subset.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-italic.woff b/deeproots/deeproots/system/public/fonts/hack/hack-italic.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-italic.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-italic.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-italic.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-italic.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-italic.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-italic.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-regular-subset.woff b/deeproots/deeproots/system/public/fonts/hack/hack-regular-subset.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-regular-subset.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-regular-subset.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-regular-subset.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-regular-subset.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-regular-subset.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-regular-subset.woff2 diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-regular.woff b/deeproots/deeproots/system/public/fonts/hack/hack-regular.woff similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-regular.woff rename to deeproots/deeproots/system/public/fonts/hack/hack-regular.woff diff --git a/mirzaev/deeproots/system/public/fonts/hack/hack-regular.woff2 b/deeproots/deeproots/system/public/fonts/hack/hack-regular.woff2 similarity index 100% rename from mirzaev/deeproots/system/public/fonts/hack/hack-regular.woff2 rename to deeproots/deeproots/system/public/fonts/hack/hack-regular.woff2 diff --git a/mirzaev/deeproots/system/public/index.php b/deeproots/deeproots/system/public/index.php similarity index 97% rename from mirzaev/deeproots/system/public/index.php rename to deeproots/deeproots/system/public/index.php index 37ca65f..797675b 100755 --- a/mirzaev/deeproots/system/public/index.php +++ b/deeproots/deeproots/system/public/index.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace mirzaev\deeproots; +namespace deeproots\deeproots; // Framework for PHP use mirzaev\minimal\core, diff --git a/mirzaev/deeproots/system/public/telegram.php b/deeproots/deeproots/system/public/telegram.php similarity index 79% rename from mirzaev/deeproots/system/public/telegram.php rename to deeproots/deeproots/system/public/telegram.php index dfe51b1..1a2dc2a 100755 --- a/mirzaev/deeproots/system/public/telegram.php +++ b/deeproots/deeproots/system/public/telegram.php @@ -2,16 +2,16 @@ declare(strict_types=1); -namespace mirzaev\deeproots; +namespace deeproots\deeproots; // Files of the project -use mirzaev\deeproots\models\telegram\middlewares, - mirzaev\deeproots\models\telegram\commands, - mirzaev\deeproots\models\telegram\settings, - mirzaev\deeproots\models\telegram\processes\question\search as process_question_search, - mirzaev\deeproots\models\telegram\buttons\question\search as buttons_question_search, - mirzaev\deeproots\models\telegram\processes\question\create as process_question_create, - mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\telegram\middlewares, + deeproots\deeproots\models\telegram\commands, + deeproots\deeproots\models\telegram\settings, + deeproots\deeproots\models\telegram\processes\question\search as process_question_search, + deeproots\deeproots\models\telegram\buttons\question\search as buttons_question_search, + deeproots\deeproots\models\telegram\processes\question\create as process_question_create, + deeproots\deeproots\models\enumerations\language; // Framework for Telegram use Zanzara\Zanzara as zanzara, @@ -50,6 +50,22 @@ require ROOT . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; // Initializing system settings require SETTINGS . DIRECTORY_SEPARATOR . 'system.php'; +// Define base access to new users +define('ACCOUNT_ACCESS_SYSTEM', 1); // Access to the bot +define('ACCOUNT_ACCESS_GAME_PLAY', 1); // Access to the game +define('ACCOUNT_ACCESS_RATING_DISPLAY', 1); // Access to the leaderboard +define('ACCOUNT_ACCESS_BALANCE_DEPOSIT', 1); // Access to deposit money into the account +define('ACCOUNT_ACCESS_BALANCE_WITHDRAW', 1); // Access to withdraw money from the account +define('ACCOUNT_ACCESS_SETTINGS', 1); // Access to user settings + +// +// Admin settings +// + +define('ACCOUNT_ACCESS_SYSTEM_ACCOUNTS', 0); // Access to accounts API +define('ACCOUNT_ACCESS_SYSTEM_QUESTIONS', 0); // Access to questions API +define('ACCOUNT_ACCESS_SYSTEM_SETTINGS', 0); // Access to settings API + // Initializing the configuration $config = new config(); $config->setParseMode(config::PARSE_MODE_MARKDOWN); diff --git a/mirzaev/deeproots/system/public/themes/default/css/aside.css b/deeproots/deeproots/system/public/themes/default/css/aside.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/aside.css rename to deeproots/deeproots/system/public/themes/default/css/aside.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/colors.css b/deeproots/deeproots/system/public/themes/default/css/colors.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/colors.css rename to deeproots/deeproots/system/public/themes/default/css/colors.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/fonts.css b/deeproots/deeproots/system/public/themes/default/css/fonts.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/fonts.css rename to deeproots/deeproots/system/public/themes/default/css/fonts.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/footer.css b/deeproots/deeproots/system/public/themes/default/css/footer.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/footer.css rename to deeproots/deeproots/system/public/themes/default/css/footer.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/header.css b/deeproots/deeproots/system/public/themes/default/css/header.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/header.css rename to deeproots/deeproots/system/public/themes/default/css/header.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/main.css b/deeproots/deeproots/system/public/themes/default/css/main.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/main.css rename to deeproots/deeproots/system/public/themes/default/css/main.css diff --git a/mirzaev/deeproots/system/public/themes/default/css/system.css b/deeproots/deeproots/system/public/themes/default/css/system.css similarity index 100% rename from mirzaev/deeproots/system/public/themes/default/css/system.css rename to deeproots/deeproots/system/public/themes/default/css/system.css diff --git a/mirzaev/deeproots/system/settings/.gitignore b/deeproots/deeproots/system/settings/.gitignore similarity index 100% rename from mirzaev/deeproots/system/settings/.gitignore rename to deeproots/deeproots/system/settings/.gitignore diff --git a/mirzaev/deeproots/system/settings/arangodb.php.sample b/deeproots/deeproots/system/settings/arangodb.php.sample similarity index 100% rename from mirzaev/deeproots/system/settings/arangodb.php.sample rename to deeproots/deeproots/system/settings/arangodb.php.sample diff --git a/mirzaev/deeproots/system/settings/system.php.sample b/deeproots/deeproots/system/settings/system.php.sample similarity index 100% rename from mirzaev/deeproots/system/settings/system.php.sample rename to deeproots/deeproots/system/settings/system.php.sample diff --git a/mirzaev/deeproots/system/settings/telegram.php.sample b/deeproots/deeproots/system/settings/telegram.php.sample similarity index 100% rename from mirzaev/deeproots/system/settings/telegram.php.sample rename to deeproots/deeproots/system/settings/telegram.php.sample diff --git a/mirzaev/deeproots/system/storage/images/mushroom.jpg b/deeproots/deeproots/system/storage/images/mushroom.jpg similarity index 100% rename from mirzaev/deeproots/system/storage/images/mushroom.jpg rename to deeproots/deeproots/system/storage/images/mushroom.jpg diff --git a/mirzaev/deeproots/system/views/templater.php b/deeproots/deeproots/system/views/templater.php similarity index 97% rename from mirzaev/deeproots/system/views/templater.php rename to deeproots/deeproots/system/views/templater.php index cafaa3e..6bd0467 100755 --- a/mirzaev/deeproots/system/views/templater.php +++ b/deeproots/deeproots/system/views/templater.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace mirzaev\deeproots\views; +namespace deeproots\deeproots\views; // Files of the project -use mirzaev\deeproots\models\enumerations\language; +use deeproots\deeproots\models\enumerations\language; // Framework for PHP use mirzaev\minimal\controller; @@ -24,7 +24,7 @@ use ArrayAccess as array_access, /** * Templater * - * @package mirzaev\deeproots\views + * @package deeproots\deeproots\views * * @param twig $twig Instance of the twig templater * @param array $variables Registry of view global variables diff --git a/mirzaev/deeproots/system/views/themes/default/aside.html b/deeproots/deeproots/system/views/themes/default/aside.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/aside.html rename to deeproots/deeproots/system/views/themes/default/aside.html diff --git a/mirzaev/deeproots/system/views/themes/default/core.html b/deeproots/deeproots/system/views/themes/default/core.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/core.html rename to deeproots/deeproots/system/views/themes/default/core.html diff --git a/mirzaev/deeproots/system/views/themes/default/footer.html b/deeproots/deeproots/system/views/themes/default/footer.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/footer.html rename to deeproots/deeproots/system/views/themes/default/footer.html diff --git a/mirzaev/deeproots/system/views/themes/default/head.html b/deeproots/deeproots/system/views/themes/default/head.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/head.html rename to deeproots/deeproots/system/views/themes/default/head.html diff --git a/mirzaev/deeproots/system/views/themes/default/header.html b/deeproots/deeproots/system/views/themes/default/header.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/header.html rename to deeproots/deeproots/system/views/themes/default/header.html diff --git a/mirzaev/deeproots/system/views/themes/default/index.html b/deeproots/deeproots/system/views/themes/default/index.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/index.html rename to deeproots/deeproots/system/views/themes/default/index.html diff --git a/mirzaev/deeproots/system/views/themes/default/js.html b/deeproots/deeproots/system/views/themes/default/js.html similarity index 100% rename from mirzaev/deeproots/system/views/themes/default/js.html rename to deeproots/deeproots/system/views/themes/default/js.html diff --git a/mirzaev/deeproots/system/test/utils/database_read.php b/deeproots/deeproots/tests/utils/database_read.php similarity index 66% rename from mirzaev/deeproots/system/test/utils/database_read.php rename to deeproots/deeproots/tests/utils/database_read.php index 873ea4b..037d953 100644 --- a/mirzaev/deeproots/system/test/utils/database_read.php +++ b/deeproots/deeproots/tests/utils/database_read.php @@ -8,9 +8,9 @@ use mirzaev\baza\database, // Initializing path constants define('INDEX', __DIR__); -define('ROOT', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR); -define('SETTINGS', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'settings'); -define('DATABASES', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'databases'); +define('ROOT', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR); +define('SETTINGS', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'system' . DIRECTORY_SEPARATOR . 'settings'); +define('DATABASES', INDEX . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'system' . DIRECTORY_SEPARATOR . 'databases'); // Initializing dependencies and system settings require ROOT . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; @@ -23,6 +23,11 @@ $file = DATABASES . DIRECTORY_SEPARATOR . 'telegram.baza'; $database = new database() ->encoding(encoding::utf8) ->columns( + /** + * FIXME: waiting on https://git.svoboda.works/mirzaev/baza/issues/25 + * baza is writing only the first half of 64bit integer/integer_unsigned + * to the database file. type::integer_unsigned should be used here. + */ new column('identifier', type::long_long_unsigned), new column('domain', type::string, ['length' => 32]), new column('name_first', type::string, ['length' => 64]), @@ -35,5 +40,5 @@ $database = new database() ->connect($file); // Reading the whole database array -$read = $database->read(); +$read = $database->read(amount: 1000); print_r($read); diff --git a/examples/systemd/deeproots.service b/examples/systemd/deeproots.service index 88ad42c..6688c22 100644 --- a/examples/systemd/deeproots.service +++ b/examples/systemd/deeproots.service @@ -5,7 +5,7 @@ Wants=network.target After=syslog.target network-online.target [Service] -ExecStart=sudo -u www-data /usr/bin/php /var/www/deeproots/mirzaev/deeproots/system/public/telegram.php +ExecStart=sudo -u www-data /usr/bin/php /var/www/deeproots/deeproots/deeproots/system/public/telegram.php PIDFile=/var/run/php/deeproots.pid RemainAfterExit=no RuntimeMaxSec=3600s