php_components_pack/composer.json
babaev-an ee76392d71 20250515
* [ObjectArrayBasicTrait] заменён на [ArrayBasicTrait].
* [ArrayBasicTrait] изменён метод __isset. Теперь он обрабатывается корректно.
* [ArrayBasicTrait] методы Serialize и UnSerialize теперь используют json_encode / json_decode
* [+Dictionary] Класс, описывающий словарь типа строка (ключ) -> значение любого типа (значение).
2025-05-15 23:04:04 +03:00

35 lines
828 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "goodboyalex/php_components_pack",
"description": "[RU] Набор компонентов для сайта на PHP / [EN] A set of components for PHP website",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"components"
],
"homepage": "https://git.babaev-an.ru/babaev-an/php_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-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^12.1.5"
},
"autoload": {
"psr-4": {
"goodboyalex\\php_components_pack\\": "sources"
}
},
"autoload-dev": {
"psr-4": {
"goodboyalex\\php_components_pack\\tests\\": "tests"
}
}
}