This commit is contained in:
2025-07-28 18:08:03 +03:00
parent 45227dd70a
commit e4c8d7e6c8
6 changed files with 2783 additions and 0 deletions

37
composer.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "goodboyalex/php_db_components_pack",
"description": "[RU] Набор компонентов для сайта на PHP для работы с БД / [EN] A set of components for PHP website for working with DB",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"components"
],
"homepage": "https://git.babaev-an.ru/babaev-an/php_db_components_pack",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Alexander Babaev",
"email": "contact_with_us@babaev-an.ru"
}
],
"require": {
"php": "^8.4",
"ext-pdo": "*",
"ext-mbstring": "*",
"goodboyalex/php_components_pack": "^v1.2.2"
},
"require-dev": {
"phpunit/phpunit": "^12.2.7"
},
"autoload": {
"psr-4": {
"goodboyalex\\php_db_components_pack\\": "sources"
}
},
"autoload-dev": {
"psr-4": {
"goodboyalex\\php_db_components_pack\\tests\\": "tests"
}
}
}