Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
 - roave/security-advisories updated from dev-latest@4aa68d3 to dev-latest@5a88337
   See changes: Roave/SecurityAdvisories@4aa68d3...5a88337
  • Loading branch information
spaze committed Dec 24, 2024
1 parent a21bd07 commit 92ff30b
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 23 deletions.
19 changes: 10 additions & 9 deletions app/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions app/vendor/composer/InstalledVersions.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ private static function getInstalled()
}

$installed = array();
$copiedLocalDir = false;

if (self::$canGetVendors) {
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
Expand All @@ -330,9 +331,11 @@ private static function getInstalled()
} elseif (is_file($vendorDir.'/composer/installed.php')) {
/** @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[]}>} $required */
$required = require $vendorDir.'/composer/installed.php';
$installed[] = self::$installedByVendor[$vendorDir] = $required;
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
self::$installed = $installed[count($installed) - 1];
self::$installedByVendor[$vendorDir] = $required;
$installed[] = $required;
if (strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
self::$installed = $required;
$copiedLocalDir = true;
}
}
}
Expand All @@ -350,7 +353,7 @@ private static function getInstalled()
}
}

if (self::$installed !== array()) {
if (self::$installed !== array() && !$copiedLocalDir) {
$installed[] = self::$installed;
}

Expand Down
2 changes: 1 addition & 1 deletion app/vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'PHP_Parallel_Lint\\PhpConsoleHighlighter\\' => array($vendorDir . '/php-parallel-lint/php-console-highlighter/src'),
'PHP_Parallel_Lint\\PhpConsoleColor\\' => array($vendorDir . '/php-parallel-lint/php-console-color/src'),
'PHPStan\\PhpDocParser\\' => array($vendorDir . '/phpstan/phpdoc-parser/src'),
'PHPStan\\' => array($vendorDir . '/phpstan/phpstan-nette/src', $vendorDir . '/phpstan/phpstan-deprecation-rules/src'),
'PHPStan\\' => array($vendorDir . '/phpstan/phpstan-deprecation-rules/src', $vendorDir . '/phpstan/phpstan-nette/src'),
'MichalSpacekCz\\' => array($baseDir . '/src'),
'JetBrains\\PhpStorm\\' => array($vendorDir . '/jetbrains/phpstorm-attributes/src'),
'Contributte\\Translation\\' => array($vendorDir . '/contributte/translation/src'),
Expand Down
4 changes: 2 additions & 2 deletions app/vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ class ComposerStaticInit247de957f14f643f393d210a332dd05b
),
'PHPStan\\' =>
array (
0 => __DIR__ . '/..' . '/phpstan/phpstan-nette/src',
1 => __DIR__ . '/..' . '/phpstan/phpstan-deprecation-rules/src',
0 => __DIR__ . '/..' . '/phpstan/phpstan-deprecation-rules/src',
1 => __DIR__ . '/..' . '/phpstan/phpstan-nette/src',
),
'MichalSpacekCz\\' =>
array (
Expand Down
13 changes: 7 additions & 6 deletions app/vendor/composer/installed.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
'roave/security-advisories' => array(
'pretty_version' => 'dev-latest',
'version' => 'dev-latest',
'reference' => '4aa68d3ea343b9576b5fdebef1332f701a7bc994',
'reference' => '5a88337185d08d54ac102bc6eb137fc432ea70fb',
'type' => 'metapackage',
'install_path' => null,
'aliases' => array(
Expand Down

0 comments on commit 92ff30b

Please sign in to comment.