Skip to content

Commit

Permalink
Fix composer dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Nov 2, 2023
1 parent 508bb1f commit 46286a6
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
12 changes: 6 additions & 6 deletions composer.lock

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

5 changes: 3 additions & 2 deletions vendor/bin/yaml-lint
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
return include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
exit(0);
}
}

return include __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint';
include __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint';
5 changes: 0 additions & 5 deletions vendor/bin/yaml-lint.bat

This file was deleted.

14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -1068,17 +1068,17 @@
},
{
"name": "symfony/yaml",
"version": "v6.3.3",
"version_normalized": "6.3.3.0",
"version": "v6.3.7",
"version_normalized": "6.3.7.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
"reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
"url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8",
"reference": "9758b6c69d179936435d0ffb577c3708d57e38a8",
"shasum": ""
},
"require": {
Expand All @@ -1092,7 +1092,7 @@
"require-dev": {
"symfony/console": "^5.4|^6.0"
},
"time": "2023-07-31T07:08:24+00:00",
"time": "2023-10-28T23:31:00+00:00",
"bin": [
"Resources/bin/yaml-lint"
],
Expand Down Expand Up @@ -1123,7 +1123,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/yaml/tree/v6.3.3"
"source": "https://github.com/symfony/yaml/tree/v6.3.7"
},
"funding": [
{
Expand Down
6 changes: 3 additions & 3 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@
),
),
'symfony/yaml' => array(
'pretty_version' => 'v6.3.3',
'version' => '6.3.3.0',
'reference' => 'e23292e8c07c85b971b44c1c4b87af52133e2add',
'pretty_version' => 'v6.3.7',
'version' => '6.3.7.0',
'reference' => '9758b6c69d179936435d0ffb577c3708d57e38a8',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/yaml',
'aliases' => array(),
Expand Down
4 changes: 4 additions & 0 deletions vendor/symfony/yaml/Inline.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public static function initialize(int $flags, int $parsedLineNumber = null, stri
*/
public static function parse(string $value = null, int $flags = 0, array &$references = []): mixed
{
if (null === $value) {
return '';
}

self::initialize($flags);

$value = trim($value);
Expand Down

0 comments on commit 46286a6

Please sign in to comment.