resolving
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-27 08:58:08 +07:00
21707 changed files with 179487 additions and 297 deletions

0
vendor/composer/ClassLoader.php vendored Normal file → Executable file
View File

38
vendor/composer/InstalledVersions.php vendored Normal file → Executable file
View File

@@ -26,12 +26,23 @@
*/
class InstalledVersions
{
/**
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
* @internal
*/
private static $selfDir = null;
/**
* @var mixed[]|null
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
*/
private static $installed;
/**
* @var bool
*/
private static $installedIsLocalDir;
/**
* @var bool|null
*/
@@ -309,6 +320,24 @@ public static function reload($data)
{
self::$installed = $data;
self::$installedByVendor = array();
// when using reload, we disable the duplicate protection to ensure that self::$installed data is
// always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
// so we have to assume it does not, and that may result in duplicate data being returned when listing
// all installed packages for example
self::$installedIsLocalDir = false;
}
/**
* @return string
*/
private static function getSelfDir()
{
if (self::$selfDir === null) {
self::$selfDir = strtr(__DIR__, '\\', '/');
}
return self::$selfDir;
}
/**
@@ -325,7 +354,9 @@ private static function getInstalled()
$copiedLocalDir = false;
if (self::$canGetVendors) {
$selfDir = self::getSelfDir();
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
$vendorDir = strtr($vendorDir, '\\', '/');
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
} elseif (is_file($vendorDir.'/composer/installed.php')) {
@@ -333,11 +364,14 @@ private static function getInstalled()
$required = require $vendorDir.'/composer/installed.php';
self::$installedByVendor[$vendorDir] = $required;
$installed[] = $required;
if (strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
self::$installed = $required;
$copiedLocalDir = true;
self::$installedIsLocalDir = true;
}
}
if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
$copiedLocalDir = true;
}
}
}

0
vendor/composer/LICENSE vendored Normal file → Executable file
View File

10
vendor/composer/autoload_classmap.php vendored Normal file → Executable file
View File

@@ -561,6 +561,8 @@
'Aws\\CloudTrail\\LogRecordIterator' => $vendorDir . '/aws/aws-sdk-php/src/CloudTrail/LogRecordIterator.php',
'Aws\\CloudWatchEvents\\CloudWatchEventsClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvents/CloudWatchEventsClient.php',
'Aws\\CloudWatchEvents\\Exception\\CloudWatchEventsException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvents/Exception/CloudWatchEventsException.php',
'Aws\\CloudWatchEvidently\\CloudWatchEvidentlyClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvidently/CloudWatchEvidentlyClient.php',
'Aws\\CloudWatchEvidently\\Exception\\CloudWatchEvidentlyException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchEvidently/Exception/CloudWatchEvidentlyException.php',
'Aws\\CloudWatchLogs\\CloudWatchLogsClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchLogs/CloudWatchLogsClient.php',
'Aws\\CloudWatchLogs\\Exception\\CloudWatchLogsException' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchLogs/Exception/CloudWatchLogsException.php',
'Aws\\CloudWatchRUM\\CloudWatchRUMClient' => $vendorDir . '/aws/aws-sdk-php/src/CloudWatchRUM/CloudWatchRUMClient.php',
@@ -915,6 +917,8 @@
'Aws\\InternetMonitor\\InternetMonitorClient' => $vendorDir . '/aws/aws-sdk-php/src/InternetMonitor/InternetMonitorClient.php',
'Aws\\Invoicing\\Exception\\InvoicingException' => $vendorDir . '/aws/aws-sdk-php/src/Invoicing/Exception/InvoicingException.php',
'Aws\\Invoicing\\InvoicingClient' => $vendorDir . '/aws/aws-sdk-php/src/Invoicing/InvoicingClient.php',
'Aws\\IoTAnalytics\\Exception\\IoTAnalyticsException' => $vendorDir . '/aws/aws-sdk-php/src/IoTAnalytics/Exception/IoTAnalyticsException.php',
'Aws\\IoTAnalytics\\IoTAnalyticsClient' => $vendorDir . '/aws/aws-sdk-php/src/IoTAnalytics/IoTAnalyticsClient.php',
'Aws\\IoTDeviceAdvisor\\Exception\\IoTDeviceAdvisorException' => $vendorDir . '/aws/aws-sdk-php/src/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php',
'Aws\\IoTDeviceAdvisor\\IoTDeviceAdvisorClient' => $vendorDir . '/aws/aws-sdk-php/src/IoTDeviceAdvisor/IoTDeviceAdvisorClient.php',
'Aws\\IoTEventsData\\Exception\\IoTEventsDataException' => $vendorDir . '/aws/aws-sdk-php/src/IoTEventsData/Exception/IoTEventsDataException.php',
@@ -1900,6 +1904,7 @@
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\InvalidConstructorClassTypeParameter' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/InvalidConstructorClassTypeParameter.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\InvalidConstructorMethodWithAttributeReturnType' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/InvalidConstructorMethodWithAttributeReturnType.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\InvalidConstructorReturnType' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/InvalidConstructorReturnType.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\InvalidSource' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/InvalidSource.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\MissingConstructorClassTypeParameter' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/MissingConstructorClassTypeParameter.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\ObjectBuildersCollision' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/ObjectBuildersCollision.php',
'CuyZ\\Valinor\\Mapper\\Object\\Exception\\PermissiveTypeNotAllowed' => $vendorDir . '/cuyz/valinor/src/Mapper/Object/Exception/PermissiveTypeNotAllowed.php',
@@ -1988,6 +1993,7 @@
'CuyZ\\Valinor\\Mapper\\Tree\\Exception\\SourceMustBeIterable' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Exception/SourceMustBeIterable.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Exception\\TooManyResolvedTypesFromUnion' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Exception/TooManyResolvedTypesFromUnion.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Exception\\UnexpectedKeyInSource' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Exception/UnexpectedKeyInSource.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Exception\\UnexpectedKeysInSource' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Exception/UnexpectedKeysInSource.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Exception\\UnresolvableShellType' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Exception/UnresolvableShellType.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Message\\DefaultMessage' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Message/DefaultMessage.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Message\\ErrorMessage' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Message/ErrorMessage.php',
@@ -2004,6 +2010,7 @@
'CuyZ\\Valinor\\Mapper\\Tree\\Message\\Messages' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Message/Messages.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Message\\NodeMessage' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Message/NodeMessage.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Message\\UserlandError' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Message/UserlandError.php',
'CuyZ\\Valinor\\Mapper\\Tree\\ObjectTrace' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/ObjectTrace.php',
'CuyZ\\Valinor\\Mapper\\Tree\\RootNodeBuilder' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/RootNodeBuilder.php',
'CuyZ\\Valinor\\Mapper\\Tree\\Shell' => $vendorDir . '/cuyz/valinor/src/Mapper/Tree/Shell.php',
'CuyZ\\Valinor\\Mapper\\TypeArgumentsMapper' => $vendorDir . '/cuyz/valinor/src/Mapper/TypeArgumentsMapper.php',
@@ -3796,6 +3803,8 @@
'Google\\Protobuf\\FieldMask' => $vendorDir . '/google/protobuf/src/Google/Protobuf/FieldMask.php',
'Google\\Protobuf\\Field\\Cardinality' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field/Cardinality.php',
'Google\\Protobuf\\Field\\Kind' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field/Kind.php',
'Google\\Protobuf\\Field_Cardinality' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field_Cardinality.php',
'Google\\Protobuf\\Field_Kind' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field_Kind.php',
'Google\\Protobuf\\FloatValue' => $vendorDir . '/google/protobuf/src/Google/Protobuf/FloatValue.php',
'Google\\Protobuf\\GPBEmpty' => $vendorDir . '/google/protobuf/src/Google/Protobuf/GPBEmpty.php',
'Google\\Protobuf\\Int32Value' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Int32Value.php',
@@ -3873,6 +3882,7 @@
'Google\\Protobuf\\Internal\\OneofField' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofField.php',
'Google\\Protobuf\\Internal\\OneofOptions' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofOptions.php',
'Google\\Protobuf\\Internal\\RawInputStream' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php',
'Google\\Protobuf\\Internal\\RepeatedField' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php',
'Google\\Protobuf\\Internal\\RepeatedFieldIter' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RepeatedFieldIter.php',
'Google\\Protobuf\\Internal\\ServiceDescriptorProto' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/ServiceDescriptorProto.php',
'Google\\Protobuf\\Internal\\ServiceOptions' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/ServiceOptions.php',

0
vendor/composer/autoload_files.php vendored Normal file → Executable file
View File

0
vendor/composer/autoload_namespaces.php vendored Normal file → Executable file
View File

4
vendor/composer/autoload_psr4.php vendored Normal file → Executable file
View File

@@ -51,8 +51,8 @@
'Svg\\' => array($vendorDir . '/dompdf/php-svg-lib/src/Svg'),
'Stripe\\' => array($vendorDir . '/stripe/stripe-php/lib'),
'Spatie\\Permission\\' => array($vendorDir . '/spatie/laravel-permission/src'),
'Spatie\\LaravelIgnition\\' => array($vendorDir . '/spatie/error-solutions/legacy/laravel-ignition', $vendorDir . '/spatie/laravel-ignition/src'),
'Spatie\\Ignition\\' => array($vendorDir . '/spatie/error-solutions/legacy/ignition', $vendorDir . '/spatie/ignition/src'),
'Spatie\\LaravelIgnition\\' => array($vendorDir . '/spatie/laravel-ignition/src', $vendorDir . '/spatie/error-solutions/legacy/laravel-ignition'),
'Spatie\\Ignition\\' => array($vendorDir . '/spatie/ignition/src', $vendorDir . '/spatie/error-solutions/legacy/ignition'),
'Spatie\\FlareClient\\' => array($vendorDir . '/spatie/flare-client-php/src'),
'Spatie\\ErrorSolutions\\' => array($vendorDir . '/spatie/error-solutions/src'),
'Spatie\\Color\\' => array($vendorDir . '/spatie/color/src'),

0
vendor/composer/autoload_real.php vendored Normal file → Executable file
View File

458
vendor/composer/autoload_static.php vendored Normal file → Executable file

File diff suppressed because it is too large Load Diff

0
vendor/composer/ca-bundle/LICENSE vendored Normal file → Executable file
View File

0
vendor/composer/ca-bundle/README.md vendored Normal file → Executable file
View File

0
vendor/composer/ca-bundle/composer.json vendored Normal file → Executable file
View File

0
vendor/composer/ca-bundle/res/cacert.pem vendored Normal file → Executable file
View File

0
vendor/composer/ca-bundle/src/CaBundle.php vendored Normal file → Executable file
View File

1
vendor/composer/installed.json vendored Normal file → Executable file
View File

@@ -1426,6 +1426,7 @@
"issues": "https://github.com/doctrine/annotations/issues",
"source": "https://github.com/doctrine/annotations/tree/1.14.4"
},
"abandoned": true,
"install-path": "../doctrine/annotations"
},
{

0
vendor/composer/installed.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/LICENSE vendored Normal file → Executable file
View File

0
vendor/composer/pcre/README.md vendored Normal file → Executable file
View File

0
vendor/composer/pcre/composer.json vendored Normal file → Executable file
View File

0
vendor/composer/pcre/extension.neon vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchAllResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchAllStrictGroupsResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchAllWithOffsetsResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchStrictGroupsResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/MatchWithOffsetsResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/PHPStan/PregMatchFlags.php vendored Normal file → Executable file
View File

View File

View File

View File

0
vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/PcreException.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/Preg.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/Regex.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/ReplaceResult.php vendored Normal file → Executable file
View File

0
vendor/composer/pcre/src/UnexpectedNullMatchException.php vendored Normal file → Executable file
View File

29
vendor/composer/platform_check.php vendored Executable file
View File

@@ -0,0 +1,29 @@
<?php
// platform_check.php @generated by Composer
$issues = array();
if (!(PHP_VERSION_ID >= 80200)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.2.0". You are running ' . PHP_VERSION . '.';
}
if (PHP_INT_SIZE !== 8) {
$issues[] = 'Your Composer dependencies require a 64-bit build of PHP.';
}
if ($issues) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
} elseif (!headers_sent()) {
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
}
}
throw new \RuntimeException(
'Composer detected issues in your platform: ' . implode(' ', $issues)
);
}

0
vendor/composer/semver/CHANGELOG.md vendored Normal file → Executable file
View File

0
vendor/composer/semver/LICENSE vendored Normal file → Executable file
View File

0
vendor/composer/semver/README.md vendored Normal file → Executable file
View File

0
vendor/composer/semver/composer.json vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Comparator.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/CompilingMatcher.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/Bound.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/Constraint.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/ConstraintInterface.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/MatchAllConstraint.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/MatchNoneConstraint.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Constraint/MultiConstraint.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Interval.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Intervals.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/Semver.php vendored Normal file → Executable file
View File

0
vendor/composer/semver/src/VersionParser.php vendored Normal file → Executable file
View File