From 58afaaf4d28a96e3b9424f0642ecd77a072d9d7d Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 1 Jun 2022 23:23:56 +0300 Subject: [PATCH] Change http to https in requirements.php (#19423) --- framework/requirements/requirements.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/framework/requirements/requirements.php b/framework/requirements/requirements.php index b6e3d80965..f1c675bd0f 100644 --- a/framework/requirements/requirements.php +++ b/framework/requirements/requirements.php @@ -16,32 +16,32 @@ return array( 'name' => 'PHP version', 'mandatory' => true, 'condition' => version_compare(PHP_VERSION, '5.4.0', '>='), - 'by' => 'Yii Framework', + 'by' => 'Yii Framework', 'memo' => 'PHP 5.4.0 or higher is required.', ), array( 'name' => 'Reflection extension', 'mandatory' => true, 'condition' => class_exists('Reflection', false), - 'by' => 'Yii Framework', + 'by' => 'Yii Framework', ), array( 'name' => 'PCRE extension', 'mandatory' => true, 'condition' => extension_loaded('pcre'), - 'by' => 'Yii Framework', + 'by' => 'Yii Framework', ), array( 'name' => 'SPL extension', 'mandatory' => true, 'condition' => extension_loaded('SPL'), - 'by' => 'Yii Framework', + 'by' => 'Yii Framework', ), array( 'name' => 'Ctype extension', 'mandatory' => true, 'condition' => extension_loaded('ctype'), - 'by' => 'Yii Framework' + 'by' => 'Yii Framework' ), array( 'name' => 'MBString extension', @@ -54,7 +54,7 @@ return array( 'name' => 'OpenSSL extension', 'mandatory' => false, 'condition' => extension_loaded('openssl'), - 'by' => 'Security Component', + 'by' => 'Security Component', 'memo' => 'Required by encrypt and decrypt methods.' ), array( @@ -74,7 +74,7 @@ return array( 'by' => 'Internationalization support', 'memo' => 'ICU 49.0 or higher is required when you want to use # placeholder in plural rules (for example, plural in - + Formatter::asRelativeTime()) in the yii\i18n\Formatter class. Your current ICU version is ' . (defined('INTL_ICU_VERSION') ? INTL_ICU_VERSION : '(ICU is missing)') . '.' ), @@ -85,7 +85,7 @@ return array( 'by' => 'Internationalization support', 'memo' => 'ICU Data 49.1 or higher is required when you want to use # placeholder in plural rules (for example, plural in - + Formatter::asRelativeTime()) in the yii\i18n\Formatter class. Your current ICU Data version is ' . (defined('INTL_ICU_DATA_VERSION') ? INTL_ICU_DATA_VERSION : '(ICU Data is missing)') . '.' ), @@ -107,8 +107,8 @@ return array( 'name' => 'IPv6 support', 'mandatory' => false, 'condition' => strlen(@inet_pton('2001:db8::1')) === 16, - 'by' => 'IPv6 expansion in IpValidator', - 'memo' => 'When IpValidator::expandIPv6 + 'by' => 'IPv6 expansion in IpValidator', + 'memo' => 'When IpValidator::expandIPv6 property is set to true, PHP must support IPv6 protocol stack. Currently PHP constant AF_INET6 is not defined and IPv6 is probably unsupported.' )