Skip to content

Commit 7a33184

Browse files
committed
⬆️ upgraded dependencies
Signed-off-by: bnomei <[email protected]>
1 parent 7aae435 commit 7a33184

File tree

12 files changed

+374
-393
lines changed

12 files changed

+374
-393
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bnomei/autoloader-for-kirby",
33
"type": "project",
4-
"version": "4.2.0",
4+
"version": "4.2.1",
55
"license": "MIT",
66
"description": "Helper to automatically load various Kirby extensions in a plugin",
77
"authors": [
@@ -56,7 +56,7 @@
5656
"php": ">=8.2.0",
5757
"mustangostang/spyc": "^0.6.3",
5858
"symfony/finder": "^6.0",
59-
"symfony/yaml": "^5.4"
59+
"symfony/yaml": "^6.0"
6060
},
6161
"require-dev": {
6262
"getkirby/cms": "^4.0.0-beta.2",

composer.lock

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

vendor/bin/yaml-lint

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,8 @@ 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-
include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
116-
exit(0);
115+
return include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/yaml/Resources/bin/yaml-lint');
117116
}
118117
}
119118

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

vendor/composer/installed.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'bnomei/autoloader-for-kirby',
4-
'pretty_version' => '4.2.0',
5-
'version' => '4.2.0.0',
4+
'pretty_version' => '4.2.1',
5+
'version' => '4.2.1.0',
66
'reference' => null,
77
'type' => 'project',
88
'install_path' => __DIR__ . '/../../',
@@ -11,8 +11,8 @@
1111
),
1212
'versions' => array(
1313
'bnomei/autoloader-for-kirby' => array(
14-
'pretty_version' => '4.2.0',
15-
'version' => '4.2.0.0',
14+
'pretty_version' => '4.2.1',
15+
'version' => '4.2.1.0',
1616
'reference' => null,
1717
'type' => 'project',
1818
'install_path' => __DIR__ . '/../../',
@@ -56,9 +56,9 @@
5656
'dev_requirement' => false,
5757
),
5858
'symfony/yaml' => array(
59-
'pretty_version' => 'v5.4.23',
60-
'version' => '5.4.23.0',
61-
'reference' => '4cd2e3ea301aadd76a4172756296fe552fb45b0b',
59+
'pretty_version' => 'v6.4.0',
60+
'version' => '6.4.0.0',
61+
'reference' => '4f9237a1bb42455d609e6687d2613dde5b41a587',
6262
'type' => 'library',
6363
'install_path' => __DIR__ . '/../symfony/yaml',
6464
'aliases' => array(),

0 commit comments

Comments
 (0)