'PHP version',
		'mandatory' => true,
		'condition' => version_compare(PHP_VERSION, '5.3.3', '>='),
		'by' => 'Yii Framework',
		'memo' => 'PHP 5.3.3 or higher is required.',
	),
	array(
		'name' => 'Reflection extension',
		'mandatory' => true,
		'condition' => class_exists('Reflection', false),
		'by' => 'Yii Framework',
	),
	array(
		'name' => 'PCRE extension',
		'mandatory' => true,
		'condition' => extension_loaded('pcre'),
		'by' => 'Yii Framework',
	),
	array(
		'name' => 'SPL extension',
		'mandatory' => true,
		'condition' => extension_loaded('SPL'),
		'by' => 'Yii Framework',
	),
	array(
		'name' => 'MBString extension',
		'mandatory' => true,
		'condition' => extension_loaded('mbstring'),
		'by' => 'Multibyte string processing',
		'memo' => 'Required for multibyte encoding string processing.'
	),
);