20250204-1

This commit is contained in:
Александр Бабаев 2025-02-04 13:42:55 +03:00
parent 50343d5a87
commit 6ed1df2eda
7 changed files with 14 additions and 47 deletions

View File

@ -9,6 +9,7 @@
<sourceFolder url="file://$MODULE_DIR$/sources/interfaces" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\interfaces\" /> <sourceFolder url="file://$MODULE_DIR$/sources/interfaces" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\interfaces\" />
<sourceFolder url="file://$MODULE_DIR$/sources/models" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\models\" /> <sourceFolder url="file://$MODULE_DIR$/sources/models" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\models\" />
<sourceFolder url="file://$MODULE_DIR$/sources/traits" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\traits\" /> <sourceFolder url="file://$MODULE_DIR$/sources/traits" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\traits\" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\tests\" /> <sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="false" packagePrefix="goodboyalex\php_components_pack\tests\" />
<excludeFolder url="file://$MODULE_DIR$/vendor/composer" /> <excludeFolder url="file://$MODULE_DIR$/vendor/composer" />
<excludeFolder url="file://$MODULE_DIR$/vendor/myclabs/deep-copy" /> <excludeFolder url="file://$MODULE_DIR$/vendor/myclabs/deep-copy" />
@ -36,6 +37,8 @@
<excludeFolder url="file://$MODULE_DIR$/vendor/sebastian/version" /> <excludeFolder url="file://$MODULE_DIR$/vendor/sebastian/version" />
<excludeFolder url="file://$MODULE_DIR$/vendor/staabm/side-effects-detector" /> <excludeFolder url="file://$MODULE_DIR$/vendor/staabm/side-effects-detector" />
<excludeFolder url="file://$MODULE_DIR$/vendor/theseer/tokenizer" /> <excludeFolder url="file://$MODULE_DIR$/vendor/theseer/tokenizer" />
<excludeFolder url="file://$MODULE_DIR$/vendor/sebastian/code-unit" />
<excludeFolder url="file://$MODULE_DIR$/vendor/sebastian/code-unit-reverse-lookup" />
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />

2
.idea/php.xml generated
View File

@ -38,6 +38,8 @@
<path value="$PROJECT_DIR$/vendor/myclabs/deep-copy" /> <path value="$PROJECT_DIR$/vendor/myclabs/deep-copy" />
<path value="$PROJECT_DIR$/vendor/phar-io/manifest" /> <path value="$PROJECT_DIR$/vendor/phar-io/manifest" />
<path value="$PROJECT_DIR$/vendor/phar-io/version" /> <path value="$PROJECT_DIR$/vendor/phar-io/version" />
<path value="$PROJECT_DIR$/vendor/sebastian/code-unit" />
<path value="$PROJECT_DIR$/vendor/sebastian/code-unit-reverse-lookup" />
</include_path> </include_path>
</component> </component>
<component name="PhpProjectSharedConfiguration" php_language_level="8.4" /> <component name="PhpProjectSharedConfiguration" php_language_level="8.4" />

2
.idea/phpunit.xml generated
View File

@ -3,7 +3,7 @@
<component name="PHPUnit"> <component name="PHPUnit">
<option name="directories"> <option name="directories">
<list> <list>
<option value="D:\my_projects\anb_php_components_pack\tests" /> <option value="$PROJECT_DIR$/tests" />
</list> </list>
</option> </option>
</component> </component>

View File

@ -5,7 +5,7 @@
"keywords": [ "keywords": [
"components" "components"
], ],
"homepage": "https://gitverse.ru/babaev-an/anb_php_components_pack", "homepage": "https://gitverse.ru/babaev-an/php_components_pack",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"type": "library", "type": "library",
"authors": [ "authors": [
@ -23,13 +23,11 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"goodboyalex\\php_components_pack\\": "sources", "goodboyalex\\php_components_pack\\": "sources"
"goodboyalex\\php_components_pack\\classes\\": "sources/classes", }
"goodboyalex\\php_components_pack\\enums\\": "sources/enums", },
"goodboyalex\\php_components_pack\\extensions\\": "sources/extensions", "autoload-dev": {
"goodboyalex\\php_components_pack\\interfaces\\": "sources/interfaces", "psr-4": {
"goodboyalex\\php_components_pack\\models\\": "sources/models",
"goodboyalex\\php_components_pack\\traits\\": "sources/traits",
"goodboyalex\\php_components_pack\\tests\\": "tests" "goodboyalex\\php_components_pack\\tests\\": "tests"
} }
} }

View File

@ -6,13 +6,7 @@ $vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir); $baseDir = dirname($vendorDir);
return array( return array(
'goodboyalex\\php_components_pack\\traits\\' => array($baseDir . '/sources/traits'),
'goodboyalex\\php_components_pack\\tests\\' => array($baseDir . '/tests'), 'goodboyalex\\php_components_pack\\tests\\' => array($baseDir . '/tests'),
'goodboyalex\\php_components_pack\\models\\' => array($baseDir . '/sources/models'),
'goodboyalex\\php_components_pack\\interfaces\\' => array($baseDir . '/sources/interfaces'),
'goodboyalex\\php_components_pack\\extensions\\' => array($baseDir . '/sources/extensions'),
'goodboyalex\\php_components_pack\\enums\\' => array($baseDir . '/sources/enums'),
'goodboyalex\\php_components_pack\\classes\\' => array($baseDir . '/sources/classes'),
'goodboyalex\\php_components_pack\\' => array($baseDir . '/sources'), 'goodboyalex\\php_components_pack\\' => array($baseDir . '/sources'),
'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'), 'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),

View File

@ -14,13 +14,7 @@ class ComposerStaticInitc00e5b601adae61bbbc3f6be4864ef55
public static $prefixLengthsPsr4 = array ( public static $prefixLengthsPsr4 = array (
'g' => 'g' =>
array ( array (
'goodboyalex\\php_components_pack\\traits\\' => 39,
'goodboyalex\\php_components_pack\\tests\\' => 38, 'goodboyalex\\php_components_pack\\tests\\' => 38,
'goodboyalex\\php_components_pack\\models\\' => 39,
'goodboyalex\\php_components_pack\\interfaces\\' => 43,
'goodboyalex\\php_components_pack\\extensions\\' => 43,
'goodboyalex\\php_components_pack\\enums\\' => 38,
'goodboyalex\\php_components_pack\\classes\\' => 40,
'goodboyalex\\php_components_pack\\' => 32, 'goodboyalex\\php_components_pack\\' => 32,
), ),
'P' => 'P' =>
@ -34,34 +28,10 @@ class ComposerStaticInitc00e5b601adae61bbbc3f6be4864ef55
); );
public static $prefixDirsPsr4 = array ( public static $prefixDirsPsr4 = array (
'goodboyalex\\php_components_pack\\traits\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/traits',
),
'goodboyalex\\php_components_pack\\tests\\' => 'goodboyalex\\php_components_pack\\tests\\' =>
array ( array (
0 => __DIR__ . '/../..' . '/tests', 0 => __DIR__ . '/../..' . '/tests',
), ),
'goodboyalex\\php_components_pack\\models\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/models',
),
'goodboyalex\\php_components_pack\\interfaces\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/interfaces',
),
'goodboyalex\\php_components_pack\\extensions\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/extensions',
),
'goodboyalex\\php_components_pack\\enums\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/enums',
),
'goodboyalex\\php_components_pack\\classes\\' =>
array (
0 => __DIR__ . '/../..' . '/sources/classes',
),
'goodboyalex\\php_components_pack\\' => 'goodboyalex\\php_components_pack\\' =>
array ( array (
0 => __DIR__ . '/../..' . '/sources', 0 => __DIR__ . '/../..' . '/sources',

View File

@ -3,7 +3,7 @@
'name' => 'goodboyalex/php_components_pack', 'name' => 'goodboyalex/php_components_pack',
'pretty_version' => 'dev-master', 'pretty_version' => 'dev-master',
'version' => 'dev-master', 'version' => 'dev-master',
'reference' => '4bcb4c60dd4219bbb7ff6c9887884541010bcdbc', 'reference' => '50343d5a87c64d1ac1cf93a8c89a7f294b3dfe44',
'type' => 'library', 'type' => 'library',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),
@ -13,7 +13,7 @@
'goodboyalex/php_components_pack' => array( 'goodboyalex/php_components_pack' => array(
'pretty_version' => 'dev-master', 'pretty_version' => 'dev-master',
'version' => 'dev-master', 'version' => 'dev-master',
'reference' => '4bcb4c60dd4219bbb7ff6c9887884541010bcdbc', 'reference' => '50343d5a87c64d1ac1cf93a8c89a7f294b3dfe44',
'type' => 'library', 'type' => 'library',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),