You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
12 years ago
|
<?php
|
||
|
/**
|
||
|
* This is the Yii core requirements for the {@link YiiRequirementChecker} instance.
|
||
|
*/
|
||
|
return array(
|
||
|
array(
|
||
|
'name' => 'PHP version',
|
||
|
'mandatory' => true,
|
||
|
'condition' => version_compare(PHP_VERSION, '5.3.0', '>='),
|
||
|
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
||
|
'memo' => 'PHP 5.3.0 or higher is required.',
|
||
|
),
|
||
|
array(
|
||
|
'name' => 'Reflection extension',
|
||
|
'mandatory' => true,
|
||
|
'condition' => class_exists('Reflection', false),
|
||
|
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
||
|
),
|
||
|
array(
|
||
|
'name' => 'PCRE extension',
|
||
|
'mandatory' => true,
|
||
|
'condition' => extension_loaded('pcre'),
|
||
|
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
||
|
),
|
||
|
array(
|
||
|
'name' => 'SPL extension',
|
||
|
'mandatory' => true,
|
||
|
'condition' => extension_loaded('SPL'),
|
||
|
'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
|
||
|
),
|
||
|
array(
|
||
|
'name' => 'MBString extension',
|
||
|
'mandatory' => true,
|
||
|
'condition' => extension_loaded('mbstring'),
|
||
|
'by' => '<a href="http://www.php.net/manual/en/book.mbstring.php">Multibyte string</a> processing',
|
||
|
'memo' => 'Required for multibyte encoding string processing.'
|
||
|
),
|
||
|
);
|