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.
		
		
		
		
			
				
					48 lines
				
				1.7 KiB
			
		
		
			
		
	
	
					48 lines
				
				1.7 KiB
			| 
											13 years ago
										 | <?php
 | ||
|  | /**
 | ||
| 
											13 years ago
										 |  * These are the Yii core requirements for the [[YiiRequirementChecker]] instance.
 | ||
| 
											13 years ago
										 |  * These requirements are mandatory for any Yii application.
 | ||
| 
											13 years ago
										 |  *
 | ||
|  |  * @var $this YiiRequirementChecker
 | ||
| 
											13 years ago
										 |  */
 | ||
|  | return array(
 | ||
|  | 	array(
 | ||
|  | 		'name' => 'PHP version',
 | ||
|  | 		'mandatory' => true,
 | ||
| 
											13 years ago
										 | 		'condition' => version_compare(PHP_VERSION, '5.3.11', '>='),
 | ||
| 
											13 years ago
										 | 		'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
 | ||
| 
											13 years ago
										 | 		'memo' => 'PHP 5.3.11 or higher is required.',
 | ||
| 
											13 years ago
										 | 	),
 | ||
|  | 	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.'
 | ||
|  | 	),
 | ||
| 
											13 years ago
										 | 	array(
 | ||
|  | 		'name' => 'Intl extension',
 | ||
| 
											13 years ago
										 | 		'mandatory' => false,
 | ||
| 
											13 years ago
										 | 		'condition' => $this->checkPhpExtensionVersion('intl', '1.0.2'),
 | ||
|  | 		'by' => '<a href="http://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
 | ||
| 
											13 years ago
										 | 		'memo' => 'PHP Intl extension 1.0.2 or higher is required when you want to use <abbr title="Internationalized domain names">IDN</abbr>-feature of EmailValidator or UrlValidator.'
 | ||
| 
											13 years ago
										 | 	),
 | ||
| 
											13 years ago
										 | );
 |