Skip to content

Commit 46286a6

Browse files
Fix composer dependency update
1 parent 508bb1f commit 46286a6

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

composer.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/bin/yaml-lint

+3-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ if (PHP_VERSION_ID < 80000) {
112112
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
113113
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
114114
) {
115-
return include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
115+
include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
116+
exit(0);
116117
}
117118
}
118119

119-
return include __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint';
120+
include __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint';

vendor/bin/yaml-lint.bat

-5
This file was deleted.

vendor/composer/installed.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1068,17 +1068,17 @@
10681068
},
10691069
{
10701070
"name": "symfony/yaml",
1071-
"version": "v6.3.3",
1072-
"version_normalized": "6.3.3.0",
1071+
"version": "v6.3.7",
1072+
"version_normalized": "6.3.7.0",
10731073
"source": {
10741074
"type": "git",
10751075
"url": "https://github.com/symfony/yaml.git",
1076-
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
1076+
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8"
10771077
},
10781078
"dist": {
10791079
"type": "zip",
1080-
"url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
1081-
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
1080+
"url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8",
1081+
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8",
10821082
"shasum": ""
10831083
},
10841084
"require": {
@@ -1092,7 +1092,7 @@
10921092
"require-dev": {
10931093
"symfony/console": "^5.4|^6.0"
10941094
},
1095-
"time": "2023-07-31T07:08:24+00:00",
1095+
"time": "2023-10-28T23:31:00+00:00",
10961096
"bin": [
10971097
"Resources/bin/yaml-lint"
10981098
],
@@ -1123,7 +1123,7 @@
11231123
"description": "Loads and dumps YAML files",
11241124
"homepage": "https://symfony.com",
11251125
"support": {
1126-
"source": "https://github.com/symfony/yaml/tree/v6.3.3"
1126+
"source": "https://github.com/symfony/yaml/tree/v6.3.7"
11271127
},
11281128
"funding": [
11291129
{

vendor/composer/installed.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@
167167
),
168168
),
169169
'symfony/yaml' => array(
170-
'pretty_version' => 'v6.3.3',
171-
'version' => '6.3.3.0',
172-
'reference' => 'e23292e8c07c85b971b44c1c4b87af52133e2add',
170+
'pretty_version' => 'v6.3.7',
171+
'version' => '6.3.7.0',
172+
'reference' => '9758b6c69d179936435d0ffb577c3708d57e38a8',
173173
'type' => 'library',
174174
'install_path' => __DIR__ . '/../symfony/yaml',
175175
'aliases' => array(),

vendor/symfony/yaml/Inline.php

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ public static function initialize(int $flags, int $parsedLineNumber = null, stri
5757
*/
5858
public static function parse(string $value = null, int $flags = 0, array &$references = []): mixed
5959
{
60+
if (null === $value) {
61+
return '';
62+
}
63+
6064
self::initialize($flags);
6165

6266
$value = trim($value);

0 commit comments

Comments
 (0)