octicon-rss(16/)
You've already forked yii2
mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-10 02:13:17 +08:00
Change http to https in requirements.php (#19423)
This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
committed by
GitHub
gitea-unlock(16/)
parent
d9c41fa207
commit
58afaaf4d2
octicon-diff(16/tw-mr-1) 1 changed files with 10 additions and 10 deletions
@@ -16,32 +16,32 @@ return array(
|
|||||||
'name' => 'PHP version',
|
'name' => 'PHP version',
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'condition' => version_compare(PHP_VERSION, '5.4.0', '>='),
|
'condition' => version_compare(PHP_VERSION, '5.4.0', '>='),
|
||||||
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
'by' => '<a href="https://www.yiiframework.com">Yii Framework</a>',
|
||||||
'memo' => 'PHP 5.4.0 or higher is required.',
|
'memo' => 'PHP 5.4.0 or higher is required.',
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'Reflection extension',
|
'name' => 'Reflection extension',
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'condition' => class_exists('Reflection', false),
|
'condition' => class_exists('Reflection', false),
|
||||||
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
'by' => '<a href="https://www.yiiframework.com">Yii Framework</a>',
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'PCRE extension',
|
'name' => 'PCRE extension',
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'condition' => extension_loaded('pcre'),
|
'condition' => extension_loaded('pcre'),
|
||||||
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
'by' => '<a href="https://www.yiiframework.com">Yii Framework</a>',
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'SPL extension',
|
'name' => 'SPL extension',
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'condition' => extension_loaded('SPL'),
|
'condition' => extension_loaded('SPL'),
|
||||||
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
'by' => '<a href="https://www.yiiframework.com">Yii Framework</a>',
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'Ctype extension',
|
'name' => 'Ctype extension',
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'condition' => extension_loaded('ctype'),
|
'condition' => extension_loaded('ctype'),
|
||||||
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>'
|
'by' => '<a href="https://www.yiiframework.com">Yii Framework</a>'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'MBString extension',
|
'name' => 'MBString extension',
|
||||||
@@ -54,7 +54,7 @@ return array(
|
|||||||
'name' => 'OpenSSL extension',
|
'name' => 'OpenSSL extension',
|
||||||
'mandatory' => false,
|
'mandatory' => false,
|
||||||
'condition' => extension_loaded('openssl'),
|
'condition' => extension_loaded('openssl'),
|
||||||
'by' => '<a href="http://www.yiiframework.com/doc-2.0/yii-base-security.html">Security Component</a>',
|
'by' => '<a href="https://www.yiiframework.com/doc-2.0/yii-base-security.html">Security Component</a>',
|
||||||
'memo' => 'Required by encrypt and decrypt methods.'
|
'memo' => 'Required by encrypt and decrypt methods.'
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
@@ -74,7 +74,7 @@ return array(
|
|||||||
'by' => '<a href="https://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
|
'by' => '<a href="https://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
|
||||||
'memo' => 'ICU 49.0 or higher is required when you want to use <code>#</code> placeholder in plural rules
|
'memo' => 'ICU 49.0 or higher is required when you want to use <code>#</code> placeholder in plural rules
|
||||||
(for example, plural in
|
(for example, plural in
|
||||||
<a href=\"http://www.yiiframework.com/doc-2.0/yii-i18n-formatter.html#asRelativeTime%28%29-detail\">
|
<a href=\"https://www.yiiframework.com/doc-2.0/yii-i18n-formatter.html#asRelativeTime%28%29-detail\">
|
||||||
Formatter::asRelativeTime()</a>) in the <code>yii\i18n\Formatter</code> class. Your current ICU version is ' .
|
Formatter::asRelativeTime()</a>) in the <code>yii\i18n\Formatter</code> class. Your current ICU version is ' .
|
||||||
(defined('INTL_ICU_VERSION') ? INTL_ICU_VERSION : '(ICU is missing)') . '.'
|
(defined('INTL_ICU_VERSION') ? INTL_ICU_VERSION : '(ICU is missing)') . '.'
|
||||||
),
|
),
|
||||||
@@ -85,7 +85,7 @@ return array(
|
|||||||
'by' => '<a href="https://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
|
'by' => '<a href="https://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
|
||||||
'memo' => 'ICU Data 49.1 or higher is required when you want to use <code>#</code> placeholder in plural rules
|
'memo' => 'ICU Data 49.1 or higher is required when you want to use <code>#</code> placeholder in plural rules
|
||||||
(for example, plural in
|
(for example, plural in
|
||||||
<a href=\"http://www.yiiframework.com/doc-2.0/yii-i18n-formatter.html#asRelativeTime%28%29-detail\">
|
<a href=\"https://www.yiiframework.com/doc-2.0/yii-i18n-formatter.html#asRelativeTime%28%29-detail\">
|
||||||
Formatter::asRelativeTime()</a>) in the <code>yii\i18n\Formatter</code> class. Your current ICU Data version is ' .
|
Formatter::asRelativeTime()</a>) in the <code>yii\i18n\Formatter</code> class. Your current ICU Data version is ' .
|
||||||
(defined('INTL_ICU_DATA_VERSION') ? INTL_ICU_DATA_VERSION : '(ICU Data is missing)') . '.'
|
(defined('INTL_ICU_DATA_VERSION') ? INTL_ICU_DATA_VERSION : '(ICU Data is missing)') . '.'
|
||||||
),
|
),
|
||||||
@@ -107,8 +107,8 @@ return array(
|
|||||||
'name' => 'IPv6 support',
|
'name' => 'IPv6 support',
|
||||||
'mandatory' => false,
|
'mandatory' => false,
|
||||||
'condition' => strlen(@inet_pton('2001:db8::1')) === 16,
|
'condition' => strlen(@inet_pton('2001:db8::1')) === 16,
|
||||||
'by' => 'IPv6 expansion in <a href="http://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html">IpValidator</a>',
|
'by' => 'IPv6 expansion in <a href="https://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html">IpValidator</a>',
|
||||||
'memo' => 'When <a href="http://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html#$expandIPv6-detail">IpValidator::expandIPv6</a>
|
'memo' => 'When <a href="https://www.yiiframework.com/doc-2.0/yii-validators-ipvalidator.html#$expandIPv6-detail">IpValidator::expandIPv6</a>
|
||||||
property is set to <code>true</code>, PHP must support IPv6 protocol stack. Currently PHP constant <code>AF_INET6</code> is not defined
|
property is set to <code>true</code>, PHP must support IPv6 protocol stack. Currently PHP constant <code>AF_INET6</code> is not defined
|
||||||
and IPv6 is probably unsupported.'
|
and IPv6 is probably unsupported.'
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user