diff --git a/README.md b/README.md
index 26c1206..1e47c87 100755
--- a/README.md
+++ b/README.md
@@ -5,7 +5,43 @@ Basis for developing chat-robots with "Web App" technology for Telegram
### AnangoDB
-1. Create a Graph with the specified values
+1. Configure unix-socket
+Edit the file `/etc/arangodb3/arangod.conf`
+`endpoint = tcp://127.0.0.1:8529` -> `endpoint = unix:///var/run/arangodb3/arango.sock` (this will disable the web panel)
+To make the web panel work, you can add this to the NGINX server settings:
+```lua
+server {
+ ...
+
+ server_name arangodb.domain.zone;
+
+ ...
+
+ allow 45.159.249.167;
+ allow 192.168.1.1/24;
+ allow 127.0.0.1;
+ deny all;
+
+ # ArangoDB
+ location / {
+ proxy_pass http://arangodb;
+ }
+}
+
+upstream arangodb {
+ server unix:/var/run/arangodb3/arango.sock;
+}
+```
+
+[here is my solution for "permission denied" problem on Ubuntu (accepted by ArangoDB maintainer)](https://github.com/arangodb/arangodb/issues/17302)
+
+OR JUST
+Edit the file `/etc/arangodb3/arangod.conf`
+`endpoint = tcp://127.0.0.1:8529` -> `endpoint = tcp://0.0.0.0:8529`
+Edit the file `mirzaev/huesos/system/settings/arangodb.php`
+`unix:///var/run/arangodb3/arango.sock` -> `tcp://YOUR_IP_ADDRESS:8529` (it is slow and not secure)
+
+2. Create a Graph with the specified values
**Name:** catalog
* Relatin 1
@@ -18,7 +54,7 @@ Basis for developing chat-robots with "Web App" technology for Telegram
**fromCollections:** product
**toCollections:** cart
-2. Create a Graph with the specified values
+3. Create a Graph with the specified values
**Name:** users
* Relation 1
@@ -28,7 +64,7 @@ Basis for developing chat-robots with "Web App" technology for Telegram
**Orphan Collections:** product
-3. Create indexes for the "product" collection
+4. Create indexes for the "product" collection
**Type:** "Inverted Index"
**Fields:** name.ru
**Analyzer:** "text_ru"
diff --git a/composer.json b/composer.json
index f13dbd7..51ffc1c 100755
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
- "name": "mirzaev/arming_bot",
+ "name": "mirzaev/huesos",
"description": "Chat-robot for tuning weapons",
- "homepage": "https://t.me/arming_bot",
+ "homepage": "https://t.me/huesos",
"type": "chat-robot",
"keywords": [
"telegram",
@@ -21,8 +21,8 @@
"php": "^8.4",
"ext-gd": "^8.4",
"triagens/arangodb": "^3.8",
- "mirzaev/minimal": "^2.2",
- "mirzaev/arangodb": "^1.3",
+ "mirzaev/minimal": "^3.4.0",
+ "mirzaev/arangodb": "^2.0.2",
"badfarm/zanzara": "^0.9.1",
"nyholm/psr7": "^1.8",
"react/filesystem": "^0.1.2",
@@ -36,7 +36,7 @@
},
"autoload": {
"psr-4": {
- "mirzaev\\arming_bot\\": "mirzaev/arming_bot/system/"
+ "mirzaev\\huesos\\": "mirzaev/huesos/system/"
}
},
"minimum-stability": "stable",
diff --git a/composer.lock b/composer.lock
old mode 100755
new mode 100644
index b95f836..ee675d2
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "38fcf54602711ba20c774e7ac3f568d0",
+ "content-hash": "72627382ed4b1926dc3faec437f65fa4",
"packages": [
{
"name": "avadim/fast-excel-helper",
@@ -63,16 +63,16 @@
},
{
"name": "avadim/fast-excel-reader",
- "version": "v2.21.1",
+ "version": "v2.22.1",
"source": {
"type": "git",
"url": "https://github.com/aVadim483/fast-excel-reader.git",
- "reference": "53b2725954cabfa898b67e76ea36e873e870ad19"
+ "reference": "8bdc35fa08f11888f2fdcf771188c985ea2aa558"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aVadim483/fast-excel-reader/zipball/53b2725954cabfa898b67e76ea36e873e870ad19",
- "reference": "53b2725954cabfa898b67e76ea36e873e870ad19",
+ "url": "https://api.github.com/repos/aVadim483/fast-excel-reader/zipball/8bdc35fa08f11888f2fdcf771188c985ea2aa558",
+ "reference": "8bdc35fa08f11888f2fdcf771188c985ea2aa558",
"shasum": ""
},
"require": {
@@ -114,9 +114,9 @@
],
"support": {
"issues": "https://github.com/aVadim483/fast-excel-reader/issues",
- "source": "https://github.com/aVadim483/fast-excel-reader/tree/v2.21.1"
+ "source": "https://github.com/aVadim483/fast-excel-reader/tree/v2.22.1"
},
- "time": "2024-11-01T16:08:22+00:00"
+ "time": "2024-12-21T17:23:01+00:00"
},
{
"name": "badfarm/zanzara",
@@ -186,7 +186,7 @@
},
{
"name": "cakephp/core",
- "version": "4.5.7",
+ "version": "4.5.9",
"source": {
"type": "git",
"url": "https://github.com/cakephp/core.git",
@@ -246,7 +246,7 @@
},
{
"name": "cakephp/utility",
- "version": "4.5.7",
+ "version": "4.5.9",
"source": {
"type": "git",
"url": "https://github.com/cakephp/utility.git",
@@ -449,29 +449,27 @@
},
{
"name": "doctrine/deprecations",
- "version": "1.1.3",
+ "version": "1.1.4",
"source": {
"type": "git",
"url": "https://github.com/doctrine/deprecations.git",
- "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
+ "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
- "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
+ "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9",
- "phpstan/phpstan": "1.4.10 || 1.10.15",
- "phpstan/phpstan-phpunit": "^1.0",
+ "doctrine/coding-standard": "^9 || ^12",
+ "phpstan/phpstan": "1.4.10 || 2.0.3",
+ "phpstan/phpstan-phpunit": "^1.0 || ^2",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "psalm/plugin-phpunit": "0.18.4",
- "psr/log": "^1 || ^2 || ^3",
- "vimeo/psalm": "4.30.0 || 5.12.0"
+ "psr/log": "^1 || ^2 || ^3"
},
"suggest": {
"psr/log": "Allows logging deprecations via PSR-3 logger implementation"
@@ -479,7 +477,7 @@
"type": "library",
"autoload": {
"psr-4": {
- "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
+ "Doctrine\\Deprecations\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -490,9 +488,9 @@
"homepage": "https://www.doctrine-project.org/",
"support": {
"issues": "https://github.com/doctrine/deprecations/issues",
- "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
},
- "time": "2024-01-30T19:34:25+00:00"
+ "time": "2024-12-07T21:18:45+00:00"
},
{
"name": "doctrine/inflector",
@@ -1323,16 +1321,16 @@
},
{
"name": "laravel/serializable-closure",
- "version": "v1.3.6",
+ "version": "v1.3.7",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
- "reference": "f865a58ea3a0107c336b7045104c75243fa59d96"
+ "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f865a58ea3a0107c336b7045104c75243fa59d96",
- "reference": "f865a58ea3a0107c336b7045104c75243fa59d96",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
+ "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
"shasum": ""
},
"require": {
@@ -1380,15 +1378,15 @@
"issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure"
},
- "time": "2024-11-11T17:06:04+00:00"
+ "time": "2024-11-14T18:34:49+00:00"
},
{
"name": "mirzaev/arangodb",
- "version": "1.3.0",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://git.mirzaev.sexy/mirzaev/arangodb",
- "reference": "d0ce9e47af189821bb6a3b7f54e228fb8c129aa3"
+ "url": "https://git.svoboda.works/mirzaev/arangodb",
+ "reference": "3e095e14f7512b8c48b9300f3d69e365e5a982a4"
},
"require": {
"php": "^8.2",
@@ -1397,7 +1395,7 @@
"require-dev": {
"phpunit/phpunit": "^9.3.3"
},
- "type": "library",
+ "type": "framework",
"autoload": {
"psr-4": {
"mirzaev\\arangodb\\": "mirzaev/arangodb/system"
@@ -1431,18 +1429,18 @@
"type": "funding"
}
],
- "time": "2023-12-21T16:26:50+00:00"
+ "time": "2024-10-12T16:21:25+00:00"
},
{
"name": "mirzaev/minimal",
- "version": "2.3.2",
+ "version": "3.4.0",
"source": {
"type": "git",
- "url": "https://git.mirzaev.sexy/mirzaev/minimal",
- "reference": "f95e4082ef39dcd170ad1129569e9dfb182469a1"
+ "url": "https://git.svoboda.works/mirzaev/minimal",
+ "reference": "e9f7cd39b6d6ed6a021ae7b10167a0107c0ec0c3"
},
"require": {
- "php": "~8.2"
+ "php": "~8.4"
},
"type": "framework",
"autoload": {
@@ -1459,10 +1457,10 @@
"name": "Arsen Mirzaev Tatyano-Muradovich",
"email": "arsen@mirzaev.sexy",
"homepage": "https://mirzaev.sexy",
- "role": "Developer"
+ "role": "Programmer"
}
],
- "description": "Lightweight MVC framework that manages only the basic mechanisms, leaving the development of the programmer and not overloading the project",
+ "description": "My vision of a good framework",
"homepage": "https://git.mirzaev.sexy/mirzaev/minimal",
"keywords": [
"framework",
@@ -1473,7 +1471,7 @@
"docs": "https://git.mirzaev.sexy/mirzaev/minimal/wiki",
"issues": "https://git.mirzaev.sexy/mirzaev/minimal/issues"
},
- "time": "2024-10-11T07:55:40+00:00"
+ "time": "2024-12-16T16:10:27+00:00"
},
{
"name": "netresearch/jsonmapper",
@@ -1973,21 +1971,21 @@
},
{
"name": "php-http/guzzle7-adapter",
- "version": "1.0.0",
+ "version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-http/guzzle7-adapter.git",
- "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01"
+ "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
- "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
+ "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
+ "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
"shasum": ""
},
"require": {
"guzzlehttp/guzzle": "^7.0",
- "php": "^7.2 | ^8.0",
+ "php": "^7.3 | ^8.0",
"php-http/httplug": "^2.0",
"psr/http-client": "^1.0"
},
@@ -1998,14 +1996,11 @@
},
"require-dev": {
"php-http/client-integration-tests": "^3.0",
+ "php-http/message-factory": "^1.1",
+ "phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^8.0|^9.3"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "0.2.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Http\\Adapter\\Guzzle7\\": "src/"
@@ -2029,9 +2024,9 @@
],
"support": {
"issues": "https://github.com/php-http/guzzle7-adapter/issues",
- "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0"
+ "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
},
- "time": "2021-03-09T07:35:15+00:00"
+ "time": "2024-11-26T11:14:36+00:00"
},
{
"name": "php-http/httplug",
@@ -2766,33 +2761,33 @@
},
{
"name": "react/child-process",
- "version": "v0.6.5",
+ "version": "v0.6.6",
"source": {
"type": "git",
"url": "https://github.com/reactphp/child-process.git",
- "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
- "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
+ "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
"shasum": ""
},
"require": {
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"php": ">=5.3.0",
"react/event-loop": "^1.2",
- "react/stream": "^1.2"
+ "react/stream": "^1.4"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
- "react/socket": "^1.8",
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/socket": "^1.16",
"sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "React\\ChildProcess\\": "src"
+ "React\\ChildProcess\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2829,19 +2824,15 @@
],
"support": {
"issues": "https://github.com/reactphp/child-process/issues",
- "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
+ "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-09-16T13:41:56+00:00"
+ "time": "2025-01-01T16:37:48+00:00"
},
{
"name": "react/dns",
@@ -3054,16 +3045,16 @@
},
{
"name": "react/http",
- "version": "v1.10.0",
+ "version": "v1.11.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/http.git",
- "reference": "8111281ee57f22b7194f5dba225e609ba7ce4d20"
+ "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/http/zipball/8111281ee57f22b7194f5dba225e609ba7ce4d20",
- "reference": "8111281ee57f22b7194f5dba225e609ba7ce4d20",
+ "url": "https://api.github.com/repos/reactphp/http/zipball/8db02de41dcca82037367f67a2d4be365b1c4db9",
+ "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9",
"shasum": ""
},
"require": {
@@ -3072,18 +3063,18 @@
"php": ">=5.3.0",
"psr/http-message": "^1.0",
"react/event-loop": "^1.2",
- "react/promise": "^3 || ^2.3 || ^1.2.1",
- "react/socket": "^1.12",
- "react/stream": "^1.2"
+ "react/promise": "^3.2 || ^2.3 || ^1.2.1",
+ "react/socket": "^1.16",
+ "react/stream": "^1.4"
},
"require-dev": {
"clue/http-proxy-react": "^1.8",
"clue/reactphp-ssh-proxy": "^1.4",
"clue/socks-react": "^1.4",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
- "react/async": "^4 || ^3 || ^2",
+ "react/async": "^4.2 || ^3 || ^2",
"react/promise-stream": "^1.4",
- "react/promise-timer": "^1.9"
+ "react/promise-timer": "^1.11"
},
"type": "library",
"autoload": {
@@ -3133,7 +3124,7 @@
],
"support": {
"issues": "https://github.com/reactphp/http/issues",
- "source": "https://github.com/reactphp/http/tree/v1.10.0"
+ "source": "https://github.com/reactphp/http/tree/v1.11.0"
},
"funding": [
{
@@ -3141,7 +3132,7 @@
"type": "open_collective"
}
],
- "time": "2024-03-27T17:20:46+00:00"
+ "time": "2024-11-20T15:24:08+00:00"
},
{
"name": "react/promise",
@@ -3594,16 +3585,16 @@
},
{
"name": "symfony/cache",
- "version": "v7.1.7",
+ "version": "v7.2.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
- "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
+ "reference": "e7e983596b744c4539f31e79b0350a6cf5878a20"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
- "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/e7e983596b744c4539f31e79b0350a6cf5878a20",
+ "reference": "e7e983596b744c4539f31e79b0350a6cf5878a20",
"shasum": ""
},
"require": {
@@ -3631,6 +3622,7 @@
"doctrine/dbal": "^3.6|^4",
"predis/predis": "^1.1|^2.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
+ "symfony/clock": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/filesystem": "^6.4|^7.0",
@@ -3671,7 +3663,7 @@
"psr6"
],
"support": {
- "source": "https://github.com/symfony/cache/tree/v7.1.7"
+ "source": "https://github.com/symfony/cache/tree/v7.2.1"
},
"funding": [
{
@@ -3687,20 +3679,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-05T15:34:55+00:00"
+ "time": "2024-12-07T08:08:50+00:00"
},
{
"name": "symfony/cache-contracts",
- "version": "v3.5.0",
+ "version": "v3.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache-contracts.git",
- "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
+ "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
- "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
+ "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
+ "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
"shasum": ""
},
"require": {
@@ -3709,12 +3701,12 @@
},
"type": "library",
"extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
"branch-alias": {
"dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -3747,7 +3739,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
+ "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
},
"funding": [
{
@@ -3763,20 +3755,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2024-09-25T14:20:29+00:00"
},
{
"name": "symfony/config",
- "version": "v7.1.7",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
- "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8"
+ "reference": "bcd3c4adf0144dee5011bb35454728c38adec055"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
- "reference": "dc373a5cbd345354696f5dfd39c5c7a8ea23f4c8",
+ "url": "https://api.github.com/repos/symfony/config/zipball/bcd3c4adf0144dee5011bb35454728c38adec055",
+ "reference": "bcd3c4adf0144dee5011bb35454728c38adec055",
"shasum": ""
},
"require": {
@@ -3822,7 +3814,7 @@
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/config/tree/v7.1.7"
+ "source": "https://github.com/symfony/config/tree/v7.2.0"
},
"funding": [
{
@@ -3838,20 +3830,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-04T11:34:07+00:00"
+ "time": "2024-11-04T11:36:24+00:00"
},
{
"name": "symfony/dependency-injection",
- "version": "v7.1.8",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
- "reference": "e4d13f0f394f4d02a041ff76acd31c5a20a5f70b"
+ "reference": "a475747af1a1c98272a5471abc35f3da81197c5d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e4d13f0f394f4d02a041ff76acd31c5a20a5f70b",
- "reference": "e4d13f0f394f4d02a041ff76acd31c5a20a5f70b",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a475747af1a1c98272a5471abc35f3da81197c5d",
+ "reference": "a475747af1a1c98272a5471abc35f3da81197c5d",
"shasum": ""
},
"require": {
@@ -3902,7 +3894,7 @@
"description": "Allows you to standardize and centralize the way objects are constructed in your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/dependency-injection/tree/v7.1.8"
+ "source": "https://github.com/symfony/dependency-injection/tree/v7.2.0"
},
"funding": [
{
@@ -3918,20 +3910,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-09T09:16:45+00:00"
+ "time": "2024-11-25T15:45:00+00:00"
},
{
"name": "symfony/deprecation-contracts",
- "version": "v3.5.0",
+ "version": "v3.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
+ "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
- "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
+ "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
"shasum": ""
},
"require": {
@@ -3939,12 +3931,12 @@
},
"type": "library",
"extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
"branch-alias": {
"dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -3969,7 +3961,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
},
"funding": [
{
@@ -3985,20 +3977,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2024-09-25T14:20:29+00:00"
},
{
"name": "symfony/error-handler",
- "version": "v7.1.7",
+ "version": "v7.2.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
+ "reference": "6150b89186573046167796fa5f3f76601d5145f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
- "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/6150b89186573046167796fa5f3f76601d5145f8",
+ "reference": "6150b89186573046167796fa5f3f76601d5145f8",
"shasum": ""
},
"require": {
@@ -4044,7 +4036,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
+ "source": "https://github.com/symfony/error-handler/tree/v7.2.1"
},
"funding": [
{
@@ -4060,20 +4052,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-05T15:34:55+00:00"
+ "time": "2024-12-07T08:50:44+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v7.1.6",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "87254c78dd50721cfd015b62277a8281c5589702"
+ "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
- "reference": "87254c78dd50721cfd015b62277a8281c5589702",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
+ "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
"shasum": ""
},
"require": {
@@ -4124,7 +4116,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
},
"funding": [
{
@@ -4140,20 +4132,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-09-25T14:21:43+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
- "version": "v3.5.0",
+ "version": "v3.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
+ "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
- "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
+ "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
"shasum": ""
},
"require": {
@@ -4162,12 +4154,12 @@
},
"type": "library",
"extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
"branch-alias": {
"dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -4200,7 +4192,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
},
"funding": [
{
@@ -4216,20 +4208,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2024-09-25T14:20:29+00:00"
},
{
"name": "symfony/filesystem",
- "version": "v7.1.6",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4"
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/c835867b3c62bb05c7fe3d637c871c7ae52024d4",
- "reference": "c835867b3c62bb05c7fe3d637c871c7ae52024d4",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
"shasum": ""
},
"require": {
@@ -4266,7 +4258,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v7.1.6"
+ "source": "https://github.com/symfony/filesystem/tree/v7.2.0"
},
"funding": [
{
@@ -4282,20 +4274,20 @@
"type": "tidelift"
}
],
- "time": "2024-10-25T15:11:02+00:00"
+ "time": "2024-10-25T15:15:23+00:00"
},
{
"name": "symfony/finder",
- "version": "v7.1.6",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
+ "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
- "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
+ "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
"shasum": ""
},
"require": {
@@ -4330,7 +4322,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/finder/tree/v7.1.6"
+ "source": "https://github.com/symfony/finder/tree/v7.2.2"
},
"funding": [
{
@@ -4346,20 +4338,20 @@
"type": "tidelift"
}
],
- "time": "2024-10-01T08:31:23+00:00"
+ "time": "2024-12-30T19:00:17+00:00"
},
{
"name": "symfony/framework-bundle",
- "version": "v7.1.6",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/framework-bundle.git",
- "reference": "1d616d762905091e798d64c53ffe3840ccfc3d89"
+ "reference": "aaf86f38b483ce101c7e60be050bc0140431cfe2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/1d616d762905091e798d64c53ffe3840ccfc3d89",
- "reference": "1d616d762905091e798d64c53ffe3840ccfc3d89",
+ "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/aaf86f38b483ce101c7e60be050bc0140431cfe2",
+ "reference": "aaf86f38b483ce101c7e60be050bc0140431cfe2",
"shasum": ""
},
"require": {
@@ -4368,14 +4360,14 @@
"php": ">=8.2",
"symfony/cache": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^7.1.5",
+ "symfony/dependency-injection": "^7.2",
"symfony/deprecation-contracts": "^2.5|^3",
"symfony/error-handler": "^6.4|^7.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/filesystem": "^7.1",
"symfony/finder": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/http-kernel": "^7.2",
"symfony/polyfill-mbstring": "~1.0",
"symfony/routing": "^6.4|^7.0"
},
@@ -4400,14 +4392,15 @@
"symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
"symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
"symfony/security-core": "<6.4",
- "symfony/security-csrf": "<6.4",
- "symfony/serializer": "<6.4",
+ "symfony/security-csrf": "<7.2",
+ "symfony/serializer": "<7.1",
"symfony/stopwatch": "<6.4",
"symfony/translation": "<6.4",
"symfony/twig-bridge": "<6.4",
"symfony/twig-bundle": "<6.4",
"symfony/validator": "<6.4",
"symfony/web-profiler-bundle": "<6.4",
+ "symfony/webhook": "<7.2",
"symfony/workflow": "<6.4"
},
"require-dev": {
@@ -4439,7 +4432,7 @@
"symfony/scheduler": "^6.4.4|^7.0.4",
"symfony/security-bundle": "^6.4|^7.0",
"symfony/semaphore": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0",
+ "symfony/serializer": "^7.1",
"symfony/stopwatch": "^6.4|^7.0",
"symfony/string": "^6.4|^7.0",
"symfony/translation": "^6.4|^7.0",
@@ -4448,9 +4441,10 @@
"symfony/uid": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"symfony/web-link": "^6.4|^7.0",
+ "symfony/webhook": "^7.2",
"symfony/workflow": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
- "twig/twig": "^3.0.4"
+ "twig/twig": "^3.12"
},
"type": "symfony-bundle",
"autoload": {
@@ -4478,7 +4472,7 @@
"description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/framework-bundle/tree/v7.1.6"
+ "source": "https://github.com/symfony/framework-bundle/tree/v7.2.2"
},
"funding": [
{
@@ -4494,24 +4488,25 @@
"type": "tidelift"
}
],
- "time": "2024-10-25T15:11:02+00:00"
+ "time": "2024-12-19T14:25:03+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v7.1.8",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
+ "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
- "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/62d1a43796ca3fea3f83a8470dfe63a4af3bc588",
+ "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588",
"shasum": ""
},
"require": {
"php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3.0",
"symfony/polyfill-mbstring": "~1.1",
"symfony/polyfill-php83": "^1.27"
},
@@ -4555,7 +4550,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
+ "source": "https://github.com/symfony/http-foundation/tree/v7.2.2"
},
"funding": [
{
@@ -4571,20 +4566,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-09T09:16:45+00:00"
+ "time": "2024-12-30T19:00:17+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v7.1.8",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
+ "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
- "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3c432966bd8c7ec7429663105f5a02d7e75b4306",
+ "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306",
"shasum": ""
},
"require": {
@@ -4613,7 +4608,7 @@
"symfony/twig-bridge": "<6.4",
"symfony/validator": "<6.4",
"symfony/var-dumper": "<6.4",
- "twig/twig": "<3.0.4"
+ "twig/twig": "<3.12"
},
"provide": {
"psr/log-implementation": "1.0|2.0|3.0"
@@ -4641,7 +4636,7 @@
"symfony/validator": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"symfony/var-exporter": "^6.4|^7.0",
- "twig/twig": "^3.0.4"
+ "twig/twig": "^3.12"
},
"type": "library",
"autoload": {
@@ -4669,7 +4664,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
+ "source": "https://github.com/symfony/http-kernel/tree/v7.2.2"
},
"funding": [
{
@@ -4685,20 +4680,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-13T14:25:32+00:00"
+ "time": "2024-12-31T14:59:40+00:00"
},
{
"name": "symfony/intl",
- "version": "v7.1.8",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/intl.git",
- "reference": "e56b243fc0afa5a12bd11dace4002ada5a7d99f8"
+ "reference": "76bb3462c6c308f8bd97d3c178c2626ae44d4dea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/intl/zipball/e56b243fc0afa5a12bd11dace4002ada5a7d99f8",
- "reference": "e56b243fc0afa5a12bd11dace4002ada5a7d99f8",
+ "url": "https://api.github.com/repos/symfony/intl/zipball/76bb3462c6c308f8bd97d3c178c2626ae44d4dea",
+ "reference": "76bb3462c6c308f8bd97d3c178c2626ae44d4dea",
"shasum": ""
},
"require": {
@@ -4755,7 +4750,7 @@
"localization"
],
"support": {
- "source": "https://github.com/symfony/intl/tree/v7.1.8"
+ "source": "https://github.com/symfony/intl/tree/v7.2.0"
},
"funding": [
{
@@ -4771,7 +4766,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-08T15:46:42+00:00"
+ "time": "2024-11-25T14:26:33+00:00"
},
{
"name": "symfony/polyfill-ctype",
@@ -4799,8 +4794,8 @@
"type": "library",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
}
},
"autoload": {
@@ -4878,8 +4873,8 @@
"type": "library",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
}
},
"autoload": {
@@ -4952,8 +4947,8 @@
"type": "library",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
}
},
"autoload": {
@@ -5028,8 +5023,8 @@
"type": "library",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
}
},
"autoload": {
@@ -5086,16 +5081,16 @@
},
{
"name": "symfony/routing",
- "version": "v7.1.6",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
+ "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
- "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/e10a2450fa957af6c448b9b93c9010a4e4c0725e",
+ "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e",
"shasum": ""
},
"require": {
@@ -5147,7 +5142,7 @@
"url"
],
"support": {
- "source": "https://github.com/symfony/routing/tree/v7.1.6"
+ "source": "https://github.com/symfony/routing/tree/v7.2.0"
},
"funding": [
{
@@ -5163,20 +5158,20 @@
"type": "tidelift"
}
],
- "time": "2024-10-01T08:31:23+00:00"
+ "time": "2024-11-25T11:08:51+00:00"
},
{
"name": "symfony/service-contracts",
- "version": "v3.5.0",
+ "version": "v3.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
+ "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
- "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
+ "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
"shasum": ""
},
"require": {
@@ -5189,12 +5184,12 @@
},
"type": "library",
"extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
"branch-alias": {
"dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -5230,7 +5225,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
},
"funding": [
{
@@ -5246,20 +5241,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2024-09-25T14:20:29+00:00"
},
{
"name": "symfony/translation-contracts",
- "version": "v3.5.0",
+ "version": "v3.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation-contracts.git",
- "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
+ "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
- "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
+ "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
"shasum": ""
},
"require": {
@@ -5267,12 +5262,12 @@
},
"type": "library",
"extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
"branch-alias": {
"dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
@@ -5308,7 +5303,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
},
"funding": [
{
@@ -5324,26 +5319,27 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2024-09-25T14:20:29+00:00"
},
{
"name": "symfony/twig-bridge",
- "version": "v7.1.8",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/twig-bridge.git",
- "reference": "535ab0be4fc563b2bc5fc0cc9e388626d226c63f"
+ "reference": "29e4c66de9618e67dc1f5f13bc667aca2a228f1e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/535ab0be4fc563b2bc5fc0cc9e388626d226c63f",
- "reference": "535ab0be4fc563b2bc5fc0cc9e388626d226c63f",
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/29e4c66de9618e67dc1f5f13bc667aca2a228f1e",
+ "reference": "29e4c66de9618e67dc1f5f13bc667aca2a228f1e",
"shasum": ""
},
"require": {
"php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/translation-contracts": "^2.5|^3",
- "twig/twig": "^3.9"
+ "twig/twig": "^3.12"
},
"conflict": {
"phpdocumentor/reflection-docblock": "<3.2.2",
@@ -5417,7 +5413,7 @@
"description": "Provides integration for Twig with various Symfony components",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/twig-bridge/tree/v7.1.8"
+ "source": "https://github.com/symfony/twig-bridge/tree/v7.2.2"
},
"funding": [
{
@@ -5433,20 +5429,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-10T02:47:09+00:00"
+ "time": "2024-12-19T14:25:03+00:00"
},
{
"name": "symfony/twig-bundle",
- "version": "v7.1.6",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/twig-bundle.git",
- "reference": "af902314a71fb412ae412094f7e1d7e49594507b"
+ "reference": "cd2be4563afaef5285bb6e0a06c5445e644a5c01"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/af902314a71fb412ae412094f7e1d7e49594507b",
- "reference": "af902314a71fb412ae412094f7e1d7e49594507b",
+ "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/cd2be4563afaef5285bb6e0a06c5445e644a5c01",
+ "reference": "cd2be4563afaef5285bb6e0a06c5445e644a5c01",
"shasum": ""
},
"require": {
@@ -5457,7 +5453,7 @@
"symfony/http-foundation": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/twig-bridge": "^6.4|^7.0",
- "twig/twig": "^3.0.4"
+ "twig/twig": "^3.12"
},
"conflict": {
"symfony/framework-bundle": "<6.4",
@@ -5501,7 +5497,7 @@
"description": "Provides a tight integration of Twig into the Symfony full-stack framework",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/twig-bundle/tree/v7.1.6"
+ "source": "https://github.com/symfony/twig-bundle/tree/v7.2.0"
},
"funding": [
{
@@ -5517,20 +5513,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-10-23T08:11:15+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v7.1.8",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
+ "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
- "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c6a22929407dec8765d6e2b6ff85b800b245879c",
+ "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c",
"shasum": ""
},
"require": {
@@ -5546,7 +5542,7 @@
"symfony/http-kernel": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/uid": "^6.4|^7.0",
- "twig/twig": "^3.0.4"
+ "twig/twig": "^3.12"
},
"bin": [
"Resources/bin/var-dump-server"
@@ -5584,7 +5580,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
+ "source": "https://github.com/symfony/var-dumper/tree/v7.2.0"
},
"funding": [
{
@@ -5600,20 +5596,20 @@
"type": "tidelift"
}
],
- "time": "2024-11-08T15:46:42+00:00"
+ "time": "2024-11-08T15:48:14+00:00"
},
{
"name": "symfony/var-exporter",
- "version": "v7.1.6",
+ "version": "v7.2.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-exporter.git",
- "reference": "90173ef89c40e7c8c616653241048705f84130ef"
+ "reference": "1a6a89f95a46af0f142874c9d650a6358d13070d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
- "reference": "90173ef89c40e7c8c616653241048705f84130ef",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1a6a89f95a46af0f142874c9d650a6358d13070d",
+ "reference": "1a6a89f95a46af0f142874c9d650a6358d13070d",
"shasum": ""
},
"require": {
@@ -5660,7 +5656,7 @@
"serialize"
],
"support": {
- "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
+ "source": "https://github.com/symfony/var-exporter/tree/v7.2.0"
},
"funding": [
{
@@ -5676,43 +5672,50 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:20:29+00:00"
+ "time": "2024-10-18T07:58:17+00:00"
},
{
"name": "thecodingmachine/safe",
- "version": "v1.3.3",
+ "version": "v2.5.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/safe.git",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc"
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
+ "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
"shasum": ""
},
"require": {
- "php": ">=7.2"
+ "php": "^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan": "^1.5",
+ "phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.2",
- "thecodingmachine/phpstan-strict-rules": "^0.12"
+ "thecodingmachine/phpstan-strict-rules": "^1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.1-dev"
+ "dev-master": "2.2.x-dev"
}
},
"autoload": {
"files": [
"deprecated/apc.php",
+ "deprecated/array.php",
+ "deprecated/datetime.php",
"deprecated/libevent.php",
+ "deprecated/misc.php",
+ "deprecated/password.php",
"deprecated/mssql.php",
"deprecated/stats.php",
+ "deprecated/strings.php",
"lib/special_cases.php",
+ "deprecated/mysqli.php",
"generated/apache.php",
"generated/apcu.php",
"generated/array.php",
@@ -5733,6 +5736,7 @@
"generated/fpm.php",
"generated/ftp.php",
"generated/funchand.php",
+ "generated/gettext.php",
"generated/gmp.php",
"generated/gnupg.php",
"generated/hash.php",
@@ -5742,7 +5746,6 @@
"generated/image.php",
"generated/imap.php",
"generated/info.php",
- "generated/ingres-ii.php",
"generated/inotify.php",
"generated/json.php",
"generated/ldap.php",
@@ -5751,20 +5754,14 @@
"generated/mailparse.php",
"generated/mbstring.php",
"generated/misc.php",
- "generated/msql.php",
"generated/mysql.php",
- "generated/mysqli.php",
- "generated/mysqlndMs.php",
- "generated/mysqlndQc.php",
"generated/network.php",
"generated/oci8.php",
"generated/opcache.php",
"generated/openssl.php",
"generated/outcontrol.php",
- "generated/password.php",
"generated/pcntl.php",
"generated/pcre.php",
- "generated/pdf.php",
"generated/pgsql.php",
"generated/posix.php",
"generated/ps.php",
@@ -5775,7 +5772,6 @@
"generated/sem.php",
"generated/session.php",
"generated/shmop.php",
- "generated/simplexml.php",
"generated/sockets.php",
"generated/sodium.php",
"generated/solr.php",
@@ -5798,13 +5794,13 @@
"generated/zip.php",
"generated/zlib.php"
],
- "psr-4": {
- "Safe\\": [
- "lib/",
- "deprecated/",
- "generated/"
- ]
- }
+ "classmap": [
+ "lib/DateTime.php",
+ "lib/DateTimeImmutable.php",
+ "lib/Exceptions/",
+ "deprecated/Exceptions/",
+ "generated/Exceptions/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5813,9 +5809,9 @@
"description": "PHP core functions that throw exceptions instead of returning FALSE on error",
"support": {
"issues": "https://github.com/thecodingmachine/safe/issues",
- "source": "https://github.com/thecodingmachine/safe/tree/v1.3.3"
+ "source": "https://github.com/thecodingmachine/safe/tree/v2.5.0"
},
- "time": "2020-10-28T17:51:34+00:00"
+ "time": "2023-04-05T11:54:14+00:00"
},
{
"name": "tivie/php-os-detector",
@@ -6010,23 +6006,23 @@
},
{
"name": "twig/extra-bundle",
- "version": "v3.13.0",
+ "version": "v3.18.0",
"source": {
"type": "git",
"url": "https://github.com/twigphp/twig-extra-bundle.git",
- "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5"
+ "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
- "reference": "21a9a7aa9f79d4493bb6fed4eb2794339f9551f5",
+ "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/9746573ca4bc1cd03a767a183faadaf84e0c31fa",
+ "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa",
"shasum": ""
},
"require": {
"php": ">=8.0.2",
"symfony/framework-bundle": "^5.4|^6.4|^7.0",
"symfony/twig-bundle": "^5.4|^6.4|^7.0",
- "twig/twig": "^3.0|^4.0"
+ "twig/twig": "^3.2|^4.0"
},
"require-dev": {
"league/commonmark": "^1.0|^2.0",
@@ -6068,7 +6064,7 @@
"twig"
],
"support": {
- "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.13.0"
+ "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.18.0"
},
"funding": [
{
@@ -6080,20 +6076,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-01T20:39:12+00:00"
+ "time": "2024-09-26T19:22:23+00:00"
},
{
"name": "twig/intl-extra",
- "version": "v3.13.0",
+ "version": "v3.18.0",
"source": {
"type": "git",
"url": "https://github.com/twigphp/intl-extra.git",
- "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38"
+ "reference": "4eeab2a3f8d04d1838be7251ab2d183f817aea7b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
- "reference": "1b8d78c5db08bdc61015fd55009d2e84b3aa7e38",
+ "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/4eeab2a3f8d04d1838be7251ab2d183f817aea7b",
+ "reference": "4eeab2a3f8d04d1838be7251ab2d183f817aea7b",
"shasum": ""
},
"require": {
@@ -6132,7 +6128,7 @@
"twig"
],
"support": {
- "source": "https://github.com/twigphp/intl-extra/tree/v3.13.0"
+ "source": "https://github.com/twigphp/intl-extra/tree/v3.18.0"
},
"funding": [
{
@@ -6144,20 +6140,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-03T13:08:40+00:00"
+ "time": "2024-11-20T13:19:52+00:00"
},
{
"name": "twig/twig",
- "version": "v3.14.2",
+ "version": "v3.18.0",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
- "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a"
+ "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a",
- "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
+ "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
"shasum": ""
},
"require": {
@@ -6168,6 +6164,7 @@
"symfony/polyfill-php81": "^1.29"
},
"require-dev": {
+ "phpstan/phpstan": "^2.0",
"psr/container": "^1.0|^2.0",
"symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
},
@@ -6211,7 +6208,7 @@
],
"support": {
"issues": "https://github.com/twigphp/Twig/issues",
- "source": "https://github.com/twigphp/Twig/tree/v3.14.2"
+ "source": "https://github.com/twigphp/Twig/tree/v3.18.0"
},
"funding": [
{
@@ -6223,7 +6220,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-07T12:36:22+00:00"
+ "time": "2024-12-29T10:51:50+00:00"
},
{
"name": "wyrihaximus/composer-update-bin-autoload-path",
@@ -6546,16 +6543,16 @@
},
{
"name": "wyrihaximus/react-child-process-messenger",
- "version": "4.0.3",
+ "version": "4.0.4",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/reactphp-child-process-messenger.git",
- "reference": "4d1bab02ee4ae62e28a7a8a43428ff6ee9532641"
+ "reference": "03e8cd71eeb5297db15772a0acd9abcadb02daec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/reactphp-child-process-messenger/zipball/4d1bab02ee4ae62e28a7a8a43428ff6ee9532641",
- "reference": "4d1bab02ee4ae62e28a7a8a43428ff6ee9532641",
+ "url": "https://api.github.com/repos/WyriHaximus/reactphp-child-process-messenger/zipball/03e8cd71eeb5297db15772a0acd9abcadb02daec",
+ "reference": "03e8cd71eeb5297db15772a0acd9abcadb02daec",
"shasum": ""
},
"require": {
@@ -6572,7 +6569,7 @@
"react/promise-stream": "^1.2",
"react/promise-timer": "^1.6",
"react/socket": "^1.6",
- "thecodingmachine/safe": "^1.3.3",
+ "thecodingmachine/safe": "^1.3.3 || ^2.0",
"wyrihaximus/composer-update-bin-autoload-path": "^1.1.1",
"wyrihaximus/constants": "^1.6",
"wyrihaximus/file-descriptors": "^1.1",
@@ -6613,7 +6610,7 @@
"description": "Messenger decorator for react/child-process",
"support": {
"issues": "https://github.com/WyriHaximus/reactphp-child-process-messenger/issues",
- "source": "https://github.com/WyriHaximus/reactphp-child-process-messenger/tree/4.0.3"
+ "source": "https://github.com/WyriHaximus/reactphp-child-process-messenger/tree/4.0.4"
},
"funding": [
{
@@ -6621,7 +6618,7 @@
"type": "github"
}
],
- "time": "2022-03-12T12:34:18+00:00"
+ "time": "2024-11-28T20:45:22+00:00"
},
{
"name": "wyrihaximus/react-child-process-pool",
@@ -6806,13 +6803,13 @@
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
- "stability-flags": {},
+ "stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": "^8.4",
"ext-gd": "^8.4"
},
- "platform-dev": {},
+ "platform-dev": [],
"plugin-api-version": "2.6.0"
}
diff --git a/mirzaev/arming_bot/system/settings/cdek.php.sample b/mirzaev/arming_bot/system/settings/cdek.php.sample
deleted file mode 100755
index 18f505e..0000000
--- a/mirzaev/arming_bot/system/settings/cdek.php.sample
+++ /dev/null
@@ -1,6 +0,0 @@
- '',
- 'secret' => ''
-];
diff --git a/mirzaev/arming_bot/system/settings/deliveries/cdek.php.sample b/mirzaev/arming_bot/system/settings/deliveries/cdek.php.sample
deleted file mode 100755
index e045a87..0000000
--- a/mirzaev/arming_bot/system/settings/deliveries/cdek.php.sample
+++ /dev/null
@@ -1,6 +0,0 @@
- '',
- 'secret' => ''
-];
diff --git a/mirzaev/arming_bot/system/storage/categories/.gitignore b/mirzaev/arming_bot/system/storage/categories/.gitignore
deleted file mode 100755
index 593bcf0..0000000
--- a/mirzaev/arming_bot/system/storage/categories/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!.gitignore
-*
diff --git a/mirzaev/arming_bot/system/storage/import/.gitignore b/mirzaev/arming_bot/system/storage/import/.gitignore
deleted file mode 100755
index 593bcf0..0000000
--- a/mirzaev/arming_bot/system/storage/import/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!.gitignore
-*
diff --git a/mirzaev/arming_bot/system/storage/products/.gitignore b/mirzaev/arming_bot/system/storage/products/.gitignore
deleted file mode 100755
index 593bcf0..0000000
--- a/mirzaev/arming_bot/system/storage/products/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!.gitignore
-*
diff --git a/mirzaev/arming_bot/system/controllers/account.php b/mirzaev/huesos/system/controllers/account.php
similarity index 93%
rename from mirzaev/arming_bot/system/controllers/account.php
rename to mirzaev/huesos/system/controllers/account.php
index 4106f59..dcc0eaa 100755
--- a/mirzaev/arming_bot/system/controllers/account.php
+++ b/mirzaev/huesos/system/controllers/account.php
@@ -2,10 +2,10 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core;
+use mirzaev\huesos\controllers\core;
// Framework for PHP
use mirzaev\minimal\http\enumerations\status;
@@ -13,7 +13,7 @@ use mirzaev\minimal\http\enumerations\status;
/**
* Controller of account
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param array $errors Registry of errors
*
diff --git a/mirzaev/arming_bot/system/controllers/cart.php b/mirzaev/huesos/system/controllers/cart.php
similarity index 97%
rename from mirzaev/arming_bot/system/controllers/cart.php
rename to mirzaev/huesos/system/controllers/cart.php
index e91f0df..7b64ff1 100755
--- a/mirzaev/arming_bot/system/controllers/cart.php
+++ b/mirzaev/huesos/system/controllers/cart.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\cart as model,
- mirzaev\arming_bot\models\product,
- mirzaev\arming_bot\models\menu,
- mirzaev\arming_bot\models\enumerations\language;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\cart as model,
+ mirzaev\huesos\models\product,
+ mirzaev\huesos\models\menu,
+ mirzaev\huesos\models\enumerations\language;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content,
@@ -18,7 +18,7 @@ use mirzaev\minimal\http\enumerations\content,
/**
* Controller of cart
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param model|null $cart Instance of the cart
* @param array $errors Registry of errors
diff --git a/mirzaev/arming_bot/system/controllers/catalog.php b/mirzaev/huesos/system/controllers/catalog.php
similarity index 97%
rename from mirzaev/arming_bot/system/controllers/catalog.php
rename to mirzaev/huesos/system/controllers/catalog.php
index 3861e05..114795a 100755
--- a/mirzaev/arming_bot/system/controllers/catalog.php
+++ b/mirzaev/huesos/system/controllers/catalog.php
@@ -2,16 +2,16 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\entry,
- mirzaev\arming_bot\models\category,
- mirzaev\arming_bot\models\product,
- mirzaev\arming_bot\models\cart,
- mirzaev\arming_bot\models\menu;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\entry,
+ mirzaev\huesos\models\category,
+ mirzaev\huesos\models\product,
+ mirzaev\huesos\models\cart,
+ mirzaev\huesos\models\menu;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content,
@@ -24,7 +24,7 @@ use ArangoDBClient\Document as _document;
/**
* Controller of catalog
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param cart|null $cart Instance of the cart
* @param array $errors Registry of errors
diff --git a/mirzaev/arming_bot/system/controllers/core.php b/mirzaev/huesos/system/controllers/core.php
similarity index 93%
rename from mirzaev/arming_bot/system/controllers/core.php
rename to mirzaev/huesos/system/controllers/core.php
index 082fa38..143940b 100755
--- a/mirzaev/arming_bot/system/controllers/core.php
+++ b/mirzaev/huesos/system/controllers/core.php
@@ -2,18 +2,18 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\views\templater,
- mirzaev\arming_bot\models\core as models,
- mirzaev\arming_bot\models\account,
- mirzaev\arming_bot\models\session,
- mirzaev\arming_bot\models\settings,
- mirzaev\arming_bot\models\cart,
- mirzaev\arming_bot\models\suspension,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\views\templater,
+ mirzaev\huesos\models\core as models,
+ mirzaev\huesos\models\account,
+ mirzaev\huesos\models\session,
+ mirzaev\huesos\models\settings,
+ mirzaev\huesos\models\cart,
+ mirzaev\huesos\models\suspension,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for PHP
use mirzaev\minimal\core as minimal,
@@ -24,7 +24,7 @@ use mirzaev\minimal\core as minimal,
/**
* Core of controllers
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param settings $settings Instance of the settings
* @param session $session Instance of the session
diff --git a/mirzaev/arming_bot/system/controllers/delivery.php b/mirzaev/huesos/system/controllers/delivery.php
similarity index 99%
rename from mirzaev/arming_bot/system/controllers/delivery.php
rename to mirzaev/huesos/system/controllers/delivery.php
index 04b3608..150f0f5 100755
--- a/mirzaev/arming_bot/system/controllers/delivery.php
+++ b/mirzaev/huesos/system/controllers/delivery.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\cart,
- mirzaev\arming_bot\models\deliveries\cdek,
- mirzaev\arming_bot\models\enumerations\delivery as company;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\cart,
+ mirzaev\huesos\models\deliveries\cdek,
+ mirzaev\huesos\models\enumerations\delivery as company;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content,
@@ -21,7 +21,7 @@ use DateTime as datetime;
/**
* Controller of delivery
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param model|null $cart Instance of the cart
* @param array $errors Registry of errors
diff --git a/mirzaev/arming_bot/system/controllers/index.php b/mirzaev/huesos/system/controllers/index.php
similarity index 90%
rename from mirzaev/arming_bot/system/controllers/index.php
rename to mirzaev/huesos/system/controllers/index.php
index fdd7c64..4280c52 100755
--- a/mirzaev/arming_bot/system/controllers/index.php
+++ b/mirzaev/huesos/system/controllers/index.php
@@ -2,11 +2,11 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\menu;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\menu;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content;
@@ -14,7 +14,7 @@ use mirzaev\minimal\http\enumerations\content;
/**
* Controller of pages
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
* @param array $errors Registry of errors
*
* @method null offer() Public offer
diff --git a/mirzaev/arming_bot/system/controllers/order.php b/mirzaev/huesos/system/controllers/order.php
similarity index 97%
rename from mirzaev/arming_bot/system/controllers/order.php
rename to mirzaev/huesos/system/controllers/order.php
index d955fd5..4677937 100755
--- a/mirzaev/arming_bot/system/controllers/order.php
+++ b/mirzaev/huesos/system/controllers/order.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\cart as model,
- mirzaev\arming_bot\models\product,
- mirzaev\arming_bot\models\menu,
- mirzaev\arming_bot\models\enumerations\language;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\cart as model,
+ mirzaev\huesos\models\product,
+ mirzaev\huesos\models\menu,
+ mirzaev\huesos\models\enumerations\language;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content,
@@ -18,7 +18,7 @@ use mirzaev\minimal\http\enumerations\content,
/**
* Controller of cart
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param model|null $cart Instance of the cart
* @param array $errors Registry of errors
diff --git a/mirzaev/arming_bot/system/controllers/session.php b/mirzaev/huesos/system/controllers/session.php
similarity index 97%
rename from mirzaev/arming_bot/system/controllers/session.php
rename to mirzaev/huesos/system/controllers/session.php
index a80e9e0..e3fcd63 100755
--- a/mirzaev/arming_bot/system/controllers/session.php
+++ b/mirzaev/huesos/system/controllers/session.php
@@ -2,11 +2,11 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\controllers;
+namespace mirzaev\huesos\controllers;
// Files of the project
-use mirzaev\arming_bot\controllers\core,
- mirzaev\arming_bot\models\account;
+use mirzaev\huesos\controllers\core,
+ mirzaev\huesos\models\account;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content,
@@ -18,7 +18,7 @@ use mirzaev\arangodb\document;
/**
* Controller of session
*
- * @package mirzaev\arming_bot\controllers
+ * @package mirzaev\huesos\controllers
*
* @param array $errors Registry of errors
*
diff --git a/mirzaev/arming_bot/system/models/account.php b/mirzaev/huesos/system/models/account.php
similarity index 88%
rename from mirzaev/arming_bot/system/models/account.php
rename to mirzaev/huesos/system/models/account.php
index 50f4ad8..a3c8925 100755
--- a/mirzaev/arming_bot/system/models/account.php
+++ b/mirzaev/huesos/system/models/account.php
@@ -2,18 +2,18 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\status,
- mirzaev\arming_bot\models\traits\buffer,
- mirzaev\arming_bot\models\traits\cart,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\status,
+ mirzaev\huesos\models\traits\buffer,
+ mirzaev\huesos\models\traits\cart,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -31,7 +31,7 @@ use exception;
/**
* Model of account
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
@@ -145,8 +145,9 @@ final class account extends core implements document_interface, collection_inter
return static::initialize($identifier, errors: $errors);
} else throw new exception('Failed to register account');
} else throw new exception('Failed to find account');
- } else throw new exception('Failed to initialize ' . static::TYPE . ' collection: ' . static::COLLECTION);
+ } else throw new exception('Failed to initialize ' . static::TYPE->name . ' collection: ' . static::COLLECTION);
} catch (exception $e) {
+var_dump($errors);
// Writing to the registry of errors
$errors[] = [
'text' => $e->getMessage(),
diff --git a/mirzaev/arming_bot/system/models/cart.php b/mirzaev/huesos/system/models/cart.php
similarity index 96%
rename from mirzaev/arming_bot/system/models/cart.php
rename to mirzaev/huesos/system/models/cart.php
index c126626..2bdbd95 100755
--- a/mirzaev/arming_bot/system/models/cart.php
+++ b/mirzaev/huesos/system/models/cart.php
@@ -2,17 +2,17 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\reservation,
- mirzaev\arming_bot\models\traits\buffer,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\reservation,
+ mirzaev\huesos\models\traits\buffer,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -28,7 +28,7 @@ use exception;
* Model of cart
*
* @uses reservation
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/catalog.php b/mirzaev/huesos/system/models/catalog.php
similarity index 98%
rename from mirzaev/arming_bot/system/models/catalog.php
rename to mirzaev/huesos/system/models/catalog.php
index 6c50d88..9fd7722 100755
--- a/mirzaev/arming_bot/system/models/catalog.php
+++ b/mirzaev/huesos/system/models/catalog.php
@@ -2,17 +2,17 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\product,
- mirzaev\arming_bot\models\category,
- mirzaev\arming_bot\models\entry,
- mirzaev\arming_bot\models\traits\files,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency,
- mirzaev\arming_bot\models\traits\yandex\disk as yandex;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\product,
+ mirzaev\huesos\models\category,
+ mirzaev\huesos\models\entry,
+ mirzaev\huesos\models\traits\files,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency,
+ mirzaev\huesos\models\traits\yandex\disk as yandex;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content;
@@ -33,7 +33,7 @@ use GdImage as image;
/**
* Model of the catalog
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/category.php b/mirzaev/huesos/system/models/category.php
similarity index 85%
rename from mirzaev/arming_bot/system/models/category.php
rename to mirzaev/huesos/system/models/category.php
index 242d548..432432e 100755
--- a/mirzaev/arming_bot/system/models/category.php
+++ b/mirzaev/huesos/system/models/category.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -21,7 +21,7 @@ use exception;
/**
* Model of category
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/connect.php b/mirzaev/huesos/system/models/connect.php
similarity index 65%
rename from mirzaev/arming_bot/system/models/connect.php
rename to mirzaev/huesos/system/models/connect.php
index cae2508..84011cc 100755
--- a/mirzaev/arming_bot/system/models/connect.php
+++ b/mirzaev/huesos/system/models/connect.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
// Framework for ArangoDB
use mirzaev\arangodb\enumerations\collection\type;
@@ -16,7 +16,7 @@ use mirzaev\arangodb\enumerations\collection\type;
/**
* Model of connect
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/core.php b/mirzaev/huesos/system/models/core.php
similarity index 98%
rename from mirzaev/arming_bot/system/models/core.php
rename to mirzaev/huesos/system/models/core.php
index b383f8d..bbf1cbe 100755
--- a/mirzaev/arming_bot/system/models/core.php
+++ b/mirzaev/huesos/system/models/core.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Framework for PHP
use mirzaev\minimal\model;
@@ -20,7 +20,7 @@ use exception;
/**
* Core of models
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/deliveries/cdek.php b/mirzaev/huesos/system/models/deliveries/cdek.php
similarity index 93%
rename from mirzaev/arming_bot/system/models/deliveries/cdek.php
rename to mirzaev/huesos/system/models/deliveries/cdek.php
index a72ace3..2179b9c 100755
--- a/mirzaev/arming_bot/system/models/deliveries/cdek.php
+++ b/mirzaev/huesos/system/models/deliveries/cdek.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\deliveries;
+namespace mirzaev\huesos\models\deliveries;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
// The HTTP PSR-18 adapter for Guzzle HTTP client
use Http\Adapter\Guzzle7\Client as guzzle;
@@ -30,7 +30,7 @@ use exception,
/**
* Model of CDEK
*
- * @package mirzaev\arming_bot\models\deliveries
+ * @package mirzaev\huesos\models\deliveries
*
* @method cities|null location(string $name, array &$errors) Search for CDEK location by name
*
diff --git a/mirzaev/arming_bot/system/models/delivery.php b/mirzaev/huesos/system/models/delivery.php
similarity index 92%
rename from mirzaev/arming_bot/system/models/delivery.php
rename to mirzaev/huesos/system/models/delivery.php
index 6e018ed..4219702 100755
--- a/mirzaev/arming_bot/system/models/delivery.php
+++ b/mirzaev/huesos/system/models/delivery.php
@@ -2,11 +2,11 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\enumerations\delivery as company;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\enumerations\delivery as company;
// Built-in libraries
use exception;
@@ -14,7 +14,7 @@ use exception;
/**
* Model of settings
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/entry.php b/mirzaev/huesos/system/models/entry.php
similarity index 97%
rename from mirzaev/arming_bot/system/models/entry.php
rename to mirzaev/huesos/system/models/entry.php
index 882fd5f..a1917a8 100755
--- a/mirzaev/arming_bot/system/models/entry.php
+++ b/mirzaev/huesos/system/models/entry.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
// Library for ArangoDB
use ArangoDBClient\Document as _document;
@@ -24,7 +24,7 @@ use exception;
/**
* Model of entry
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/enumerations/currency.php b/mirzaev/huesos/system/models/enumerations/currency.php
similarity index 88%
rename from mirzaev/arming_bot/system/models/enumerations/currency.php
rename to mirzaev/huesos/system/models/enumerations/currency.php
index 911541b..d40971f 100755
--- a/mirzaev/arming_bot/system/models/enumerations/currency.php
+++ b/mirzaev/huesos/system/models/enumerations/currency.php
@@ -2,15 +2,15 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\enumerations;
+namespace mirzaev\huesos\models\enumerations;
// Files of the project
-use mirzaev\arming_bot\models\enumerations\language;
+use mirzaev\huesos\models\enumerations\language;
/**
* Types of currencies by ISO 4217 standart
*
- * @package mirzaev\arming_bot\models\enumerations
+ * @package mirzaev\huesos\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/arming_bot/system/models/enumerations/delivery.php b/mirzaev/huesos/system/models/enumerations/delivery.php
similarity index 72%
rename from mirzaev/arming_bot/system/models/enumerations/delivery.php
rename to mirzaev/huesos/system/models/enumerations/delivery.php
index 85f445b..8f586c3 100755
--- a/mirzaev/arming_bot/system/models/enumerations/delivery.php
+++ b/mirzaev/huesos/system/models/enumerations/delivery.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\enumerations;
+namespace mirzaev\huesos\models\enumerations;
/**
* Types of deliveries
*
- * @package mirzaev\arming_bot\models\enumerations
+ * @package mirzaev\huesos\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/arming_bot/system/models/enumerations/language.php b/mirzaev/huesos/system/models/enumerations/language.php
similarity index 89%
rename from mirzaev/arming_bot/system/models/enumerations/language.php
rename to mirzaev/huesos/system/models/enumerations/language.php
index 1f7595d..83fa554 100755
--- a/mirzaev/arming_bot/system/models/enumerations/language.php
+++ b/mirzaev/huesos/system/models/enumerations/language.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\enumerations;
+namespace mirzaev\huesos\models\enumerations;
/**
* Types of languages by ISO 639-1 standart
*
- * @package mirzaev\arming_bot\models\enumerations
+ * @package mirzaev\huesos\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/arming_bot/system/models/enumerations/session.php b/mirzaev/huesos/system/models/enumerations/session.php
similarity index 74%
rename from mirzaev/arming_bot/system/models/enumerations/session.php
rename to mirzaev/huesos/system/models/enumerations/session.php
index 9ec0ab6..a2ddf27 100755
--- a/mirzaev/arming_bot/system/models/enumerations/session.php
+++ b/mirzaev/huesos/system/models/enumerations/session.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\enumerations;
+namespace mirzaev\huesos\models\enumerations;
/**
* Types of session verification
*
- * @package mirzaev\arming_bot\models\enumerations
+ * @package mirzaev\huesos\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/arming_bot/system/models/interfaces/collection.php b/mirzaev/huesos/system/models/interfaces/collection.php
similarity index 85%
rename from mirzaev/arming_bot/system/models/interfaces/collection.php
rename to mirzaev/huesos/system/models/interfaces/collection.php
index 919988c..626d0bb 100755
--- a/mirzaev/arming_bot/system/models/interfaces/collection.php
+++ b/mirzaev/huesos/system/models/interfaces/collection.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\interfaces;
+namespace mirzaev\huesos\models\interfaces;
// Framework for ArangoDB
use mirzaev\arangodb\enumerations\collection\type;
@@ -10,7 +10,7 @@ use mirzaev\arangodb\enumerations\collection\type;
/**
* Interface for implementing a collection from ArangoDB
*
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/interfaces/document.php b/mirzaev/huesos/system/models/interfaces/document.php
similarity index 94%
rename from mirzaev/arming_bot/system/models/interfaces/document.php
rename to mirzaev/huesos/system/models/interfaces/document.php
index 3b3764a..08e07e9 100755
--- a/mirzaev/arming_bot/system/models/interfaces/document.php
+++ b/mirzaev/huesos/system/models/interfaces/document.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\interfaces;
+namespace mirzaev\huesos\models\interfaces;
// Library для ArangoDB
use ArangoDBClient\Document as _document;
@@ -12,7 +12,7 @@ use ArangoDBClient\Document as _document;
*
* @param _document $document An instance of the ArangoDB document from ArangoDB (protected readonly)
*
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/menu.php b/mirzaev/huesos/system/models/menu.php
similarity index 58%
rename from mirzaev/arming_bot/system/models/menu.php
rename to mirzaev/huesos/system/models/menu.php
index 6777668..b29d198 100755
--- a/mirzaev/arming_bot/system/models/menu.php
+++ b/mirzaev/huesos/system/models/menu.php
@@ -2,18 +2,18 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
/**
* Model of menu
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/order.php b/mirzaev/huesos/system/models/order.php
similarity index 60%
rename from mirzaev/arming_bot/system/models/order.php
rename to mirzaev/huesos/system/models/order.php
index 95908a1..c8a25a8 100755
--- a/mirzaev/arming_bot/system/models/order.php
+++ b/mirzaev/huesos/system/models/order.php
@@ -2,16 +2,16 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\reservation,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\reservation,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -27,7 +27,7 @@ use exception;
* Model of order
*
* @uses !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/product.php b/mirzaev/huesos/system/models/product.php
similarity index 95%
rename from mirzaev/arming_bot/system/models/product.php
rename to mirzaev/huesos/system/models/product.php
index 0ed3aa9..8477790 100755
--- a/mirzaev/arming_bot/system/models/product.php
+++ b/mirzaev/huesos/system/models/product.php
@@ -2,15 +2,15 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -25,7 +25,7 @@ use exception;
/**
* Model of a product
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/reservation.php b/mirzaev/huesos/system/models/reservation.php
similarity index 64%
rename from mirzaev/arming_bot/system/models/reservation.php
rename to mirzaev/huesos/system/models/reservation.php
index 2f58912..0d79899 100755
--- a/mirzaev/arming_bot/system/models/reservation.php
+++ b/mirzaev/huesos/system/models/reservation.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\cart,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\cart,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface;
// Framework for ArangoDB
use mirzaev\arangodb\enumerations\collection\type;
@@ -18,7 +18,7 @@ use mirzaev\arangodb\enumerations\collection\type;
* Model of reservtion
*
* @used-by cart
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/session.php b/mirzaev/huesos/system/models/session.php
similarity index 93%
rename from mirzaev/arming_bot/system/models/session.php
rename to mirzaev/huesos/system/models/session.php
index bc0ad33..f29a72e 100755
--- a/mirzaev/arming_bot/system/models/session.php
+++ b/mirzaev/huesos/system/models/session.php
@@ -2,20 +2,20 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\account,
- mirzaev\arming_bot\models\connect,
- mirzaev\arming_bot\models\enumerations\session as verification,
- mirzaev\arming_bot\models\traits\status,
- mirzaev\arming_bot\models\traits\buffer,
- mirzaev\arming_bot\models\traits\cart,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\account,
+ mirzaev\huesos\models\connect,
+ mirzaev\huesos\models\enumerations\session as verification,
+ mirzaev\huesos\models\traits\status,
+ mirzaev\huesos\models\traits\buffer,
+ mirzaev\huesos\models\traits\cart,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -30,7 +30,7 @@ use exception;
/**
* Model of a session
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/settings.php b/mirzaev/huesos/system/models/settings.php
similarity index 87%
rename from mirzaev/arming_bot/system/models/settings.php
rename to mirzaev/huesos/system/models/settings.php
index a411e11..23a9d5f 100755
--- a/mirzaev/arming_bot/system/models/settings.php
+++ b/mirzaev/huesos/system/models/settings.php
@@ -2,15 +2,15 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -25,7 +25,7 @@ use exception;
/**
* Model of settings
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/suspension.php b/mirzaev/huesos/system/models/suspension.php
similarity index 92%
rename from mirzaev/arming_bot/system/models/suspension.php
rename to mirzaev/huesos/system/models/suspension.php
index 2d4bc47..5427f5b 100755
--- a/mirzaev/arming_bot/system/models/suspension.php
+++ b/mirzaev/huesos/system/models/suspension.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language;
// Framework for ArangoDB
use mirzaev\arangodb\collection,
@@ -25,7 +25,7 @@ use exception,
/**
* Model of a suspension
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/telegram.php b/mirzaev/huesos/system/models/telegram.php
similarity index 98%
rename from mirzaev/arming_bot/system/models/telegram.php
rename to mirzaev/huesos/system/models/telegram.php
index d5abba1..d057903 100755
--- a/mirzaev/arming_bot/system/models/telegram.php
+++ b/mirzaev/huesos/system/models/telegram.php
@@ -2,16 +2,16 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models;
+namespace mirzaev\huesos\models;
// Files of the project
-use mirzaev\arming_bot\models\core,
- mirzaev\arming_bot\controllers\core as controller,
- mirzaev\arming_bot\models\catalog,
- mirzaev\arming_bot\models\suspension,
- mirzaev\arming_bot\models\account,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\core,
+ mirzaev\huesos\controllers\core as controller,
+ mirzaev\huesos\models\catalog,
+ mirzaev\huesos\models\suspension,
+ mirzaev\huesos\models\account,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for Telegram
use Zanzara\Zanzara,
@@ -27,7 +27,7 @@ use mirzaev\arangodb\document;
/**
* Model of chat (telegram)
*
- * @package mirzaev\arming_bot\models
+ * @package mirzaev\huesos\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
@@ -112,7 +112,7 @@ final class telegram extends core
$keyboard[] = [
[
'text' => '🛒 Каталог',
- 'web_app' => ['url' => 'https://arming.dev.mirzaev.sexy']
+ 'web_app' => ['url' => 'https://telegram.arming.ru/']
]
];
/* } */
@@ -238,7 +238,7 @@ final class telegram extends core
'reply_markup' => [
'inline_keyboard' => [
[
- ['text' => '📄 Публичная оферта', 'web_app' => ['url' => 'https://arming.dev.mirzaev.sexy/offer']],
+ ['text' => '📄 Публичная оферта', 'web_app' => ['url' => 'https://telegram.arming.ru/offer']],
]
]
],
@@ -886,7 +886,7 @@ final class telegram extends core
'reply_markup' => [
'inline_keyboard' => [
[
- /* ['text' => '🧾 Оплатить', 'web_app' => ['url' => 'https://arming.dev.mirzaev.sexy']] */
+ /* ['text' => '🧾 Оплатить', 'web_app' => ['url' => 'https://telegram.arming.ru/']] */
/* ['text' => '📦 Оформить заказ', 'url' => 'https://auth.robokassa.ru/Merchant/Index.aspx?MerchantLogin=demo&OutSum=11&Description=Покупка в демо магазине&SignatureValue=2c113e992e2c985e43e348ff3c12f32b'], */
['text' => '📦 Оформить заказ', 'callback_data' => 'order'],
]
diff --git a/mirzaev/arming_bot/system/models/traits/buffer.php b/mirzaev/huesos/system/models/traits/buffer.php
similarity index 90%
rename from mirzaev/arming_bot/system/models/traits/buffer.php
rename to mirzaev/huesos/system/models/traits/buffer.php
index 8e1fe0d..7c87bf0 100755
--- a/mirzaev/arming_bot/system/models/traits/buffer.php
+++ b/mirzaev/huesos/system/models/traits/buffer.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits;
+namespace mirzaev\huesos\models\traits;
// Files of the project
-use mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Library for ArangoDB
use ArangoDBClient\Document as _document;
@@ -28,7 +28,7 @@ use exception;
* @param static TYPE Type of the collection in ArangoDB
*
* @uses collection_interface
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/traits/cart.php b/mirzaev/huesos/system/models/traits/cart.php
similarity index 91%
rename from mirzaev/arming_bot/system/models/traits/cart.php
rename to mirzaev/huesos/system/models/traits/cart.php
index 29b103c..d2fbf90 100755
--- a/mirzaev/arming_bot/system/models/traits/cart.php
+++ b/mirzaev/huesos/system/models/traits/cart.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits;
+namespace mirzaev\huesos\models\traits;
// Files of the project
-use mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\traits\document as document_trait,
- mirzaev\arming_bot\models\connect,
- mirzaev\arming_bot\models\cart as model;
+use mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\traits\document as document_trait,
+ mirzaev\huesos\models\connect,
+ mirzaev\huesos\models\cart as model;
// Library для ArangoDB
use ArangoDBClient\Document as _document;
@@ -28,7 +28,7 @@ use exception;
*
* @uses collection_interface
* @uses document_interface
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/traits/document.php b/mirzaev/huesos/system/models/traits/document.php
similarity index 95%
rename from mirzaev/arming_bot/system/models/traits/document.php
rename to mirzaev/huesos/system/models/traits/document.php
index daa1f72..70304f0 100755
--- a/mirzaev/arming_bot/system/models/traits/document.php
+++ b/mirzaev/huesos/system/models/traits/document.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits;
+namespace mirzaev\huesos\models\traits;
// Files of the project
-use mirzaev\arming_bot\models\interfaces\document as document_interface,
- mirzaev\arming_bot\models\interfaces\collection as collection_interface,
- mirzaev\arming_bot\models\connect;
+use mirzaev\huesos\models\interfaces\document as document_interface,
+ mirzaev\huesos\models\interfaces\collection as collection_interface,
+ mirzaev\huesos\models\connect;
// Library для ArangoDB
use ArangoDBClient\Document as _document;
@@ -26,7 +26,7 @@ use exception;
* @var protected readonly _document|null $document An instance of the ArangoDB document
*
* @uses document_interface
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/traits/files.php b/mirzaev/huesos/system/models/traits/files.php
similarity index 93%
rename from mirzaev/arming_bot/system/models/traits/files.php
rename to mirzaev/huesos/system/models/traits/files.php
index badebb3..4488641 100755
--- a/mirzaev/arming_bot/system/models/traits/files.php
+++ b/mirzaev/huesos/system/models/traits/files.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits;
+namespace mirzaev\huesos\models\traits;
// Built-in libraries
use exception;
@@ -10,7 +10,7 @@ use exception;
/**
* Trait for initialization of files handlers
*
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/traits/status.php b/mirzaev/huesos/system/models/traits/status.php
similarity index 90%
rename from mirzaev/arming_bot/system/models/traits/status.php
rename to mirzaev/huesos/system/models/traits/status.php
index b4d4896..01905d3 100755
--- a/mirzaev/arming_bot/system/models/traits/status.php
+++ b/mirzaev/huesos/system/models/traits/status.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits;
+namespace mirzaev\huesos\models\traits;
// Built-in libraries
use exception;
@@ -10,7 +10,7 @@ use exception;
/**
* Trait for initialization of a status
*
- * @package mirzaev\arming_bot\models\traits
+ * @package mirzaev\huesos\models\traits
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/models/traits/yandex/disk.php b/mirzaev/huesos/system/models/traits/yandex/disk.php
similarity index 96%
rename from mirzaev/arming_bot/system/models/traits/yandex/disk.php
rename to mirzaev/huesos/system/models/traits/yandex/disk.php
index f1b6e64..1fec65e 100755
--- a/mirzaev/arming_bot/system/models/traits/yandex/disk.php
+++ b/mirzaev/huesos/system/models/traits/yandex/disk.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\models\traits\yandex;
+namespace mirzaev\huesos\models\traits\yandex;
// Framework for PHP
use mirzaev\minimal\http\enumerations\content;
@@ -13,7 +13,7 @@ use exception;
/**
* Trait for "Yandex Disk"
*
- * @package mirzaev\arming_bot\models\traits\yandex
+ * @package mirzaev\huesos\models\traits\yandex
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich
diff --git a/mirzaev/arming_bot/system/public/cdek.php b/mirzaev/huesos/system/public/cdek.php
similarity index 100%
rename from mirzaev/arming_bot/system/public/cdek.php
rename to mirzaev/huesos/system/public/cdek.php
diff --git a/mirzaev/arming_bot/system/public/index.php b/mirzaev/huesos/system/public/index.php
similarity index 98%
rename from mirzaev/arming_bot/system/public/index.php
rename to mirzaev/huesos/system/public/index.php
index 93f9c69..f207c32 100755
--- a/mirzaev/arming_bot/system/public/index.php
+++ b/mirzaev/huesos/system/public/index.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot;
+namespace mirzaev\huesos;
// Framework for PHP
use mirzaev\minimal\core,
diff --git a/mirzaev/arming_bot/system/public/js/core.js b/mirzaev/huesos/system/public/js/core.js
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/core.js
rename to mirzaev/huesos/system/public/js/core.js
diff --git a/mirzaev/arming_bot/system/public/js/modules/account.mjs b/mirzaev/huesos/system/public/js/modules/account.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/account.mjs
rename to mirzaev/huesos/system/public/js/modules/account.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/cart.mjs b/mirzaev/huesos/system/public/js/modules/cart.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/cart.mjs
rename to mirzaev/huesos/system/public/js/modules/cart.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/catalog.mjs b/mirzaev/huesos/system/public/js/modules/catalog.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/catalog.mjs
rename to mirzaev/huesos/system/public/js/modules/catalog.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/connection.mjs b/mirzaev/huesos/system/public/js/modules/connection.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/connection.mjs
rename to mirzaev/huesos/system/public/js/modules/connection.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/damper.mjs b/mirzaev/huesos/system/public/js/modules/damper.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/damper.mjs
rename to mirzaev/huesos/system/public/js/modules/damper.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/delivery.mjs b/mirzaev/huesos/system/public/js/modules/delivery.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/delivery.mjs
rename to mirzaev/huesos/system/public/js/modules/delivery.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/hotline.mjs b/mirzaev/huesos/system/public/js/modules/hotline.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/hotline.mjs
rename to mirzaev/huesos/system/public/js/modules/hotline.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/loader.mjs b/mirzaev/huesos/system/public/js/modules/loader.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/loader.mjs
rename to mirzaev/huesos/system/public/js/modules/loader.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/session.mjs b/mirzaev/huesos/system/public/js/modules/session.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/session.mjs
rename to mirzaev/huesos/system/public/js/modules/session.mjs
diff --git a/mirzaev/arming_bot/system/public/js/modules/telegram.mjs b/mirzaev/huesos/system/public/js/modules/telegram.mjs
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/modules/telegram.mjs
rename to mirzaev/huesos/system/public/js/modules/telegram.mjs
diff --git a/mirzaev/arming_bot/system/public/js/telegram.js b/mirzaev/huesos/system/public/js/telegram.js
similarity index 100%
rename from mirzaev/arming_bot/system/public/js/telegram.js
rename to mirzaev/huesos/system/public/js/telegram.js
diff --git a/mirzaev/arming_bot/system/public/robot.php b/mirzaev/huesos/system/public/robot.php
similarity index 96%
rename from mirzaev/arming_bot/system/public/robot.php
rename to mirzaev/huesos/system/public/robot.php
index f429fc3..553eb63 100755
--- a/mirzaev/arming_bot/system/public/robot.php
+++ b/mirzaev/huesos/system/public/robot.php
@@ -2,13 +2,13 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot;
+namespace mirzaev\huesos;
// Files of the project
-use mirzaev\arming_bot\controllers\core as controller,
- mirzaev\arming_bot\models\core as model,
- mirzaev\arming_bot\models\cart,
- mirzaev\arming_bot\models\telegram;
+use mirzaev\huesos\controllers\core as controller,
+ mirzaev\huesos\models\core as model,
+ mirzaev\huesos\models\cart,
+ mirzaev\huesos\models\telegram;
// Framework for Telegram
use Zanzara\Zanzara,
diff --git a/mirzaev/arming_bot/system/public/socket.php b/mirzaev/huesos/system/public/socket.php
similarity index 98%
rename from mirzaev/arming_bot/system/public/socket.php
rename to mirzaev/huesos/system/public/socket.php
index d65b575..773b154 100755
--- a/mirzaev/arming_bot/system/public/socket.php
+++ b/mirzaev/huesos/system/public/socket.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot;
+namespace mirzaev\huesos;
// Files of the project
-use mirzaev\arming_bot\controllers\core as controller,
- mirzaev\arming_bot\models\core as model,
- mirzaev\arming_bot\models\socket;
+use mirzaev\huesos\controllers\core as controller,
+ mirzaev\huesos\models\core as model,
+ mirzaev\huesos\models\socket;
// Framework for PHP
use mirzaev\minimal\core;
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/account.css b/mirzaev/huesos/system/public/themes/default/css/account.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/account.css
rename to mirzaev/huesos/system/public/themes/default/css/account.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/animations.css b/mirzaev/huesos/system/public/themes/default/css/animations.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/animations.css
rename to mirzaev/huesos/system/public/themes/default/css/animations.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/cart.css b/mirzaev/huesos/system/public/themes/default/css/cart.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/cart.css
rename to mirzaev/huesos/system/public/themes/default/css/cart.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/catalog.css b/mirzaev/huesos/system/public/themes/default/css/catalog.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/catalog.css
rename to mirzaev/huesos/system/public/themes/default/css/catalog.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/connection.css b/mirzaev/huesos/system/public/themes/default/css/connection.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/connection.css
rename to mirzaev/huesos/system/public/themes/default/css/connection.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/fonts/dejavu.css b/mirzaev/huesos/system/public/themes/default/css/fonts/dejavu.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/fonts/dejavu.css
rename to mirzaev/huesos/system/public/themes/default/css/fonts/dejavu.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/fonts/kabrio.css b/mirzaev/huesos/system/public/themes/default/css/fonts/kabrio.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/fonts/kabrio.css
rename to mirzaev/huesos/system/public/themes/default/css/fonts/kabrio.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/arrow.css b/mirzaev/huesos/system/public/themes/default/css/icons/arrow.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/arrow.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/arrow.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/arrow_circle.css b/mirzaev/huesos/system/public/themes/default/css/icons/arrow_circle.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/arrow_circle.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/arrow_circle.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/close.css b/mirzaev/huesos/system/public/themes/default/css/icons/close.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/close.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/close.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/corner.css b/mirzaev/huesos/system/public/themes/default/css/icons/corner.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/corner.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/corner.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/hashtag.css b/mirzaev/huesos/system/public/themes/default/css/icons/hashtag.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/hashtag.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/hashtag.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/list_add.css b/mirzaev/huesos/system/public/themes/default/css/icons/list_add.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/list_add.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/list_add.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/loading_spinner.css b/mirzaev/huesos/system/public/themes/default/css/icons/loading_spinner.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/loading_spinner.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/loading_spinner.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/minus.css b/mirzaev/huesos/system/public/themes/default/css/icons/minus.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/minus.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/minus.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/pin.css b/mirzaev/huesos/system/public/themes/default/css/icons/pin.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/pin.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/pin.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/plus.css b/mirzaev/huesos/system/public/themes/default/css/icons/plus.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/plus.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/plus.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/search.css b/mirzaev/huesos/system/public/themes/default/css/icons/search.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/search.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/search.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/shopping_cart.css b/mirzaev/huesos/system/public/themes/default/css/icons/shopping_cart.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/shopping_cart.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/shopping_cart.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/icons/trash.css b/mirzaev/huesos/system/public/themes/default/css/icons/trash.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/icons/trash.css
rename to mirzaev/huesos/system/public/themes/default/css/icons/trash.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/initialization.css b/mirzaev/huesos/system/public/themes/default/css/initialization.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/initialization.css
rename to mirzaev/huesos/system/public/themes/default/css/initialization.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/interface/select.css b/mirzaev/huesos/system/public/themes/default/css/interface/select.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/interface/select.css
rename to mirzaev/huesos/system/public/themes/default/css/interface/select.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/loading.css b/mirzaev/huesos/system/public/themes/default/css/loading.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/loading.css
rename to mirzaev/huesos/system/public/themes/default/css/loading.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/main.css b/mirzaev/huesos/system/public/themes/default/css/main.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/main.css
rename to mirzaev/huesos/system/public/themes/default/css/main.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/menu.css b/mirzaev/huesos/system/public/themes/default/css/menu.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/menu.css
rename to mirzaev/huesos/system/public/themes/default/css/menu.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/suspension.css b/mirzaev/huesos/system/public/themes/default/css/suspension.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/suspension.css
rename to mirzaev/huesos/system/public/themes/default/css/suspension.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/css/window.css b/mirzaev/huesos/system/public/themes/default/css/window.css
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/css/window.css
rename to mirzaev/huesos/system/public/themes/default/css/window.css
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-BoldOblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-ExtraLight.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Oblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Oblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Oblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans-Oblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSans.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSans.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-BoldOblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed-Oblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansCondensed.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-BoldOblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono-Oblique.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSansMono.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-BoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerif.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-BoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed.ttf b/mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/dejavu/DejaVuLGCSerifCondensed.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-BoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-BoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-BoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-BoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Book.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Book.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Book.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Book.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-BookItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-BookItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-BookItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-BookItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraBoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLight.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLight.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLight.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLight.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-ExtraLightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Heavy.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Heavy.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Heavy.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Heavy.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-HeavyItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-HeavyItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-HeavyItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-HeavyItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Light.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Light.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Light.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Light.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-LightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-LightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-LightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-LightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Regular.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Regular.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/Kabrio-Regular.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/Kabrio-Regular.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLight.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLight.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLight.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLight.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-ExtraLightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Heavy.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Heavy.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Heavy.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Heavy.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-HeavyItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-HeavyItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-HeavyItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-HeavyItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Light.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Light.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Light.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Light.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-LightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-LightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-LightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-LightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Regular.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Regular.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAbarth-Regular.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAbarth-Regular.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-BoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-BoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-BoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-BoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Book.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Book.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Book.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Book.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-BookItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-BookItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-BookItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-BookItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtBdIta.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtBdIta.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtBdIta.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtBdIta.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraBold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraBold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraBold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraBold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLight.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLight.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLight.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLight.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLightItali.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLightItali.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLightItali.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-ExtraLightItali.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Heavy.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Heavy.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Heavy.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Heavy.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-HeavyItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-HeavyItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-HeavyItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-HeavyItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Light.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Light.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Light.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Light.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-LightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-LightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-LightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-LightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Regular.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Regular.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioAlternate-Regular.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioAlternate-Regular.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Bold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Bold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Bold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Bold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-BoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-BoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-BoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-BoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Book.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Book.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Book.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Book.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-BookItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-BookItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-BookItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-BookItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBold.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBold.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBold.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBold.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBoldItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBoldItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBoldItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraBoldItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLight.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLight.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLight.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLight.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-ExtraLightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Heavy.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Heavy.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Heavy.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Heavy.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-HeavyItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-HeavyItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-HeavyItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-HeavyItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Italic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Italic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Italic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Italic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Light.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Light.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Light.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Light.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-LightItalic.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-LightItalic.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-LightItalic.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-LightItalic.ttf
diff --git a/mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Regular.ttf b/mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Regular.ttf
similarity index 100%
rename from mirzaev/arming_bot/system/public/themes/default/fonts/kabrio/KabrioSoft-Regular.ttf
rename to mirzaev/huesos/system/public/themes/default/fonts/kabrio/KabrioSoft-Regular.ttf
diff --git a/mirzaev/arming_bot/system/settings/.gitignore b/mirzaev/huesos/system/settings/.gitignore
similarity index 100%
rename from mirzaev/arming_bot/system/settings/.gitignore
rename to mirzaev/huesos/system/settings/.gitignore
diff --git a/mirzaev/arming_bot/system/settings/arangodb.php.sample b/mirzaev/huesos/system/settings/arangodb.php.sample
similarity index 100%
rename from mirzaev/arming_bot/system/settings/arangodb.php.sample
rename to mirzaev/huesos/system/settings/arangodb.php.sample
diff --git a/mirzaev/huesos/system/settings/deliveries/cdek.php.sample b/mirzaev/huesos/system/settings/deliveries/cdek.php.sample
new file mode 100755
index 0000000..a09340d
--- /dev/null
+++ b/mirzaev/huesos/system/settings/deliveries/cdek.php.sample
@@ -0,0 +1,6 @@
+ '',
+ 'secret' => ''
+];
diff --git a/mirzaev/arming_bot/system/settings/telegram.php.sample b/mirzaev/huesos/system/settings/telegram.php.sample
similarity index 100%
rename from mirzaev/arming_bot/system/settings/telegram.php.sample
rename to mirzaev/huesos/system/settings/telegram.php.sample
diff --git a/mirzaev/arming_bot/system/storage/example.xlsx b/mirzaev/huesos/system/storage/example.xlsx
similarity index 100%
rename from mirzaev/arming_bot/system/storage/example.xlsx
rename to mirzaev/huesos/system/storage/example.xlsx
diff --git a/mirzaev/arming_bot/system/views/templater.php b/mirzaev/huesos/system/views/templater.php
similarity index 96%
rename from mirzaev/arming_bot/system/views/templater.php
rename to mirzaev/huesos/system/views/templater.php
index 112eaf3..6b9dff1 100755
--- a/mirzaev/arming_bot/system/views/templater.php
+++ b/mirzaev/huesos/system/views/templater.php
@@ -2,14 +2,14 @@
declare(strict_types=1);
-namespace mirzaev\arming_bot\views;
+namespace mirzaev\huesos\views;
// Files of the project
-use mirzaev\arming_bot\models\session,
- mirzaev\arming_bot\models\account,
- mirzaev\arming_bot\models\settings,
- mirzaev\arming_bot\models\enumerations\language,
- mirzaev\arming_bot\models\enumerations\currency;
+use mirzaev\huesos\models\session,
+ mirzaev\huesos\models\account,
+ mirzaev\huesos\models\settings,
+ mirzaev\huesos\models\enumerations\language,
+ mirzaev\huesos\models\enumerations\currency;
// Framework for PHP
use mirzaev\minimal\controller;
@@ -29,7 +29,7 @@ use ArrayAccess as array_access,
/**
* Templater
*
- * @package mirzaev\arming_bot\views
+ * @package mirzaev\huesos\views
*
* @param
*
diff --git a/mirzaev/arming_bot/system/views/themes/default/account.html b/mirzaev/huesos/system/views/themes/default/account.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/account.html
rename to mirzaev/huesos/system/views/themes/default/account.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/deliveries/cdek/javascript.html b/mirzaev/huesos/system/views/themes/default/cart/elements/deliveries/cdek/javascript.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/deliveries/cdek/javascript.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/deliveries/cdek/javascript.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/deliveries/cdek/section.html b/mirzaev/huesos/system/views/themes/default/cart/elements/deliveries/cdek/section.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/deliveries/cdek/section.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/deliveries/cdek/section.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/delivery.html b/mirzaev/huesos/system/views/themes/default/cart/elements/delivery.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/delivery.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/delivery.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/order.html b/mirzaev/huesos/system/views/themes/default/cart/elements/order.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/order.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/order.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/products.html b/mirzaev/huesos/system/views/themes/default/cart/elements/products.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/products.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/products.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html b/mirzaev/huesos/system/views/themes/default/cart/elements/summary.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html
rename to mirzaev/huesos/system/views/themes/default/cart/elements/summary.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/page.html b/mirzaev/huesos/system/views/themes/default/cart/page.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/cart/page.html
rename to mirzaev/huesos/system/views/themes/default/cart/page.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html b/mirzaev/huesos/system/views/themes/default/catalog/elements/categories.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html
rename to mirzaev/huesos/system/views/themes/default/catalog/elements/categories.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html b/mirzaev/huesos/system/views/themes/default/catalog/elements/filters.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html
rename to mirzaev/huesos/system/views/themes/default/catalog/elements/filters.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html b/mirzaev/huesos/system/views/themes/default/catalog/elements/products.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html
rename to mirzaev/huesos/system/views/themes/default/catalog/elements/products.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html b/mirzaev/huesos/system/views/themes/default/catalog/elements/search.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html
rename to mirzaev/huesos/system/views/themes/default/catalog/elements/search.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/page.html b/mirzaev/huesos/system/views/themes/default/catalog/page.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/catalog/page.html
rename to mirzaev/huesos/system/views/themes/default/catalog/page.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/connection.html b/mirzaev/huesos/system/views/themes/default/connection.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/connection.html
rename to mirzaev/huesos/system/views/themes/default/connection.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/core.html b/mirzaev/huesos/system/views/themes/default/core.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/core.html
rename to mirzaev/huesos/system/views/themes/default/core.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/footer.html b/mirzaev/huesos/system/views/themes/default/footer.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/footer.html
rename to mirzaev/huesos/system/views/themes/default/footer.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/head.html b/mirzaev/huesos/system/views/themes/default/head.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/head.html
rename to mirzaev/huesos/system/views/themes/default/head.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/header.html b/mirzaev/huesos/system/views/themes/default/header.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/header.html
rename to mirzaev/huesos/system/views/themes/default/header.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/iframes/robokassa.html b/mirzaev/huesos/system/views/themes/default/iframes/robokassa.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/iframes/robokassa.html
rename to mirzaev/huesos/system/views/themes/default/iframes/robokassa.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/index.html b/mirzaev/huesos/system/views/themes/default/index.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/index.html
rename to mirzaev/huesos/system/views/themes/default/index.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/js.html b/mirzaev/huesos/system/views/themes/default/js.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/js.html
rename to mirzaev/huesos/system/views/themes/default/js.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/menu.html b/mirzaev/huesos/system/views/themes/default/menu.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/menu.html
rename to mirzaev/huesos/system/views/themes/default/menu.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/offer.html b/mirzaev/huesos/system/views/themes/default/offer.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/offer.html
rename to mirzaev/huesos/system/views/themes/default/offer.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/offer/page.html b/mirzaev/huesos/system/views/themes/default/offer/page.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/offer/page.html
rename to mirzaev/huesos/system/views/themes/default/offer/page.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/order/elements/delivery.html b/mirzaev/huesos/system/views/themes/default/order/elements/delivery.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/order/elements/delivery.html
rename to mirzaev/huesos/system/views/themes/default/order/elements/delivery.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/order/elements/summary.html b/mirzaev/huesos/system/views/themes/default/order/elements/summary.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/order/elements/summary.html
rename to mirzaev/huesos/system/views/themes/default/order/elements/summary.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/order/page.html b/mirzaev/huesos/system/views/themes/default/order/page.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/order/page.html
rename to mirzaev/huesos/system/views/themes/default/order/page.html
diff --git a/mirzaev/arming_bot/system/views/themes/default/suspension/page.html b/mirzaev/huesos/system/views/themes/default/suspension/page.html
similarity index 100%
rename from mirzaev/arming_bot/system/views/themes/default/suspension/page.html
rename to mirzaev/huesos/system/views/themes/default/suspension/page.html