Skip to content

Commit 19be9f0

Browse files
committed
[UPD] Vendor.
1 parent 0899f09 commit 19be9f0

File tree

436 files changed

+13096
-6881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

436 files changed

+13096
-6881
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![screenshot_1](https://user-images.githubusercontent.com/523389/105744390-5a720e00-5f3d-11eb-8405-7b0f7e28688a.jpg)
44

5-
[![CMS Evolution](https://img.shields.io/badge/CMS-Evolution-brightgreen.svg)](https://github.com/evolution-cms/evolution)
5+
[![CMS Evolution](https://img.shields.io/badge/CMS-Evolution-brightgreen.svg)](https://packagist.org/packages/evolutioncms/evolution)
66
[![GitHub release](https://img.shields.io/github/release/evolution-cms/evolution.svg)](https://github.com/evolution-cms/evolution/releases)
77
![PHP version](https://img.shields.io/badge/PHP->=8.2-red.svg?php=8.2)
88
[![Issues](https://img.shields.io/github/issues-closed-raw/evolution-cms/evolution.svg?maxAge=2592000)](https://github.com/evolution-cms/evolution/issues)

core/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"composer/composer": "*",
3131
"dmitry-suffi/redis-session-handler": "*",
3232
"doctrine/dbal": "3.*",
33-
"dragonmantank/cron-expression": "^3.3",
33+
"dragonmantank/cron-expression": "^3.6",
3434
"evolutioncms-services/document-manager": "1.*",
3535
"evolutioncms-services/user-manager": "1.*",
3636
"evolutioncms/salo2": "*",
@@ -40,7 +40,7 @@
4040
"ext-libxml": "*",
4141
"ext-mbstring": "*",
4242
"ext-SimpleXML": "*",
43-
"guzzlehttp/guzzle": "^7.0.1",
43+
"guzzlehttp/guzzle": "^7.10",
4444
"illuminate/cache": "11.*",
4545
"illuminate/config": "11.*",
4646
"illuminate/console": "11.*",

core/vendor/bin/carbon

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ if (PHP_VERSION_ID < 80000) {
108108
}
109109
}
110110

111-
if (
112-
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
113-
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
114-
) {
115-
return include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
111+
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
112+
include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
113+
exit(0);
116114
}
117115
}
118116

119-
return include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';
117+
include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';

core/vendor/bin/carbon.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@ECHO OFF
2+
setlocal DISABLEDELAYEDEXPANSION
3+
SET BIN_TARGET=%~dp0/carbon
4+
SET COMPOSER_RUNTIME_BIN_DIR=%~dp0
5+
php "%BIN_TARGET%" %*

core/vendor/bin/composer

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ if (PHP_VERSION_ID < 80000) {
108108
}
109109
}
110110

111-
if (
112-
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
113-
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
114-
) {
115-
return include("phpvfscomposer://" . __DIR__ . '/..'.'/composer/composer/bin/composer');
111+
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
112+
include("phpvfscomposer://" . __DIR__ . '/..'.'/composer/composer/bin/composer');
113+
exit(0);
116114
}
117115
}
118116

119-
return include __DIR__ . '/..'.'/composer/composer/bin/composer';
117+
include __DIR__ . '/..'.'/composer/composer/bin/composer';

core/vendor/bin/composer.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@ECHO OFF
2+
setlocal DISABLEDELAYEDEXPANSION
3+
SET BIN_TARGET=%~dp0/composer
4+
SET COMPOSER_RUNTIME_BIN_DIR=%~dp0
5+
php "%BIN_TARGET%" %*

core/vendor/bin/doctrine-dbal

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ if (PHP_VERSION_ID < 80000) {
108108
}
109109
}
110110

111-
if (
112-
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
113-
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
114-
) {
115-
return include("phpvfscomposer://" . __DIR__ . '/..'.'/doctrine/dbal/bin/doctrine-dbal');
111+
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
112+
include("phpvfscomposer://" . __DIR__ . '/..'.'/doctrine/dbal/bin/doctrine-dbal');
113+
exit(0);
116114
}
117115
}
118116

119-
return include __DIR__ . '/..'.'/doctrine/dbal/bin/doctrine-dbal';
117+
include __DIR__ . '/..'.'/doctrine/dbal/bin/doctrine-dbal';

core/vendor/bin/doctrine-dbal.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@ECHO OFF
2+
setlocal DISABLEDELAYEDEXPANSION
3+
SET BIN_TARGET=%~dp0/doctrine-dbal
4+
SET COMPOSER_RUNTIME_BIN_DIR=%~dp0
5+
php "%BIN_TARGET%" %*

core/vendor/bin/patch-type-declarations

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ if (PHP_VERSION_ID < 80000) {
108108
}
109109
}
110110

111-
if (
112-
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
113-
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
114-
) {
115-
return include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/error-handler/Resources/bin/patch-type-declarations');
111+
if (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) {
112+
include("phpvfscomposer://" . __DIR__ . '/..'.'/symfony/error-handler/Resources/bin/patch-type-declarations');
113+
exit(0);
116114
}
117115
}
118116

119-
return include __DIR__ . '/..'.'/symfony/error-handler/Resources/bin/patch-type-declarations';
117+
include __DIR__ . '/..'.'/symfony/error-handler/Resources/bin/patch-type-declarations';
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@ECHO OFF
2+
setlocal DISABLEDELAYEDEXPANSION
3+
SET BIN_TARGET=%~dp0/patch-type-declarations
4+
SET COMPOSER_RUNTIME_BIN_DIR=%~dp0
5+
php "%BIN_TARGET%" %*

0 commit comments

Comments
 (0)