Skip to content

Commit 92ff30b

Browse files
committed
Update packages
- roave/security-advisories updated from dev-latest@4aa68d3 to dev-latest@5a88337 See changes: Roave/SecurityAdvisories@4aa68d3...5a88337
1 parent a21bd07 commit 92ff30b

File tree

6 files changed

+28
-23
lines changed

6 files changed

+28
-23
lines changed

app/composer.lock

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/vendor/composer/InstalledVersions.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ private static function getInstalled()
322322
}
323323

324324
$installed = array();
325+
$copiedLocalDir = false;
325326

326327
if (self::$canGetVendors) {
327328
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
@@ -330,9 +331,11 @@ private static function getInstalled()
330331
} elseif (is_file($vendorDir.'/composer/installed.php')) {
331332
/** @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 */
332333
$required = require $vendorDir.'/composer/installed.php';
333-
$installed[] = self::$installedByVendor[$vendorDir] = $required;
334-
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
335-
self::$installed = $installed[count($installed) - 1];
334+
self::$installedByVendor[$vendorDir] = $required;
335+
$installed[] = $required;
336+
if (strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
337+
self::$installed = $required;
338+
$copiedLocalDir = true;
336339
}
337340
}
338341
}
@@ -350,7 +353,7 @@ private static function getInstalled()
350353
}
351354
}
352355

353-
if (self::$installed !== array()) {
356+
if (self::$installed !== array() && !$copiedLocalDir) {
354357
$installed[] = self::$installed;
355358
}
356359

app/vendor/composer/autoload_psr4.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
'PHP_Parallel_Lint\\PhpConsoleHighlighter\\' => array($vendorDir . '/php-parallel-lint/php-console-highlighter/src'),
3636
'PHP_Parallel_Lint\\PhpConsoleColor\\' => array($vendorDir . '/php-parallel-lint/php-console-color/src'),
3737
'PHPStan\\PhpDocParser\\' => array($vendorDir . '/phpstan/phpdoc-parser/src'),
38-
'PHPStan\\' => array($vendorDir . '/phpstan/phpstan-nette/src', $vendorDir . '/phpstan/phpstan-deprecation-rules/src'),
38+
'PHPStan\\' => array($vendorDir . '/phpstan/phpstan-deprecation-rules/src', $vendorDir . '/phpstan/phpstan-nette/src'),
3939
'MichalSpacekCz\\' => array($baseDir . '/src'),
4040
'JetBrains\\PhpStorm\\' => array($vendorDir . '/jetbrains/phpstorm-attributes/src'),
4141
'Contributte\\Translation\\' => array($vendorDir . '/contributte/translation/src'),

app/vendor/composer/autoload_static.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ class ComposerStaticInit247de957f14f643f393d210a332dd05b
184184
),
185185
'PHPStan\\' =>
186186
array (
187-
0 => __DIR__ . '/..' . '/phpstan/phpstan-nette/src',
188-
1 => __DIR__ . '/..' . '/phpstan/phpstan-deprecation-rules/src',
187+
0 => __DIR__ . '/..' . '/phpstan/phpstan-deprecation-rules/src',
188+
1 => __DIR__ . '/..' . '/phpstan/phpstan-nette/src',
189189
),
190190
'MichalSpacekCz\\' =>
191191
array (

app/vendor/composer/installed.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/vendor/composer/installed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@
403403
'roave/security-advisories' => array(
404404
'pretty_version' => 'dev-latest',
405405
'version' => 'dev-latest',
406-
'reference' => '4aa68d3ea343b9576b5fdebef1332f701a7bc994',
406+
'reference' => '5a88337185d08d54ac102bc6eb137fc432ea70fb',
407407
'type' => 'metapackage',
408408
'install_path' => null,
409409
'aliases' => array(

0 commit comments

Comments
 (0)