requirements.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * These are the Yii core requirements for the [[YiiRequirementChecker]] instance.
  4. * These requirements are mandatory for any Yii application.
  5. *
  6. * @var YiiRequirementChecker $this
  7. */
  8. return array(
  9. array(
  10. 'name' => 'PHP version',
  11. 'mandatory' => true,
  12. 'condition' => version_compare(PHP_VERSION, '5.4.0', '>='),
  13. 'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
  14. 'memo' => 'PHP 5.4.0 or higher is required.',
  15. ),
  16. array(
  17. 'name' => 'Reflection extension',
  18. 'mandatory' => true,
  19. 'condition' => class_exists('Reflection', false),
  20. 'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
  21. ),
  22. array(
  23. 'name' => 'PCRE extension',
  24. 'mandatory' => true,
  25. 'condition' => extension_loaded('pcre'),
  26. 'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
  27. ),
  28. array(
  29. 'name' => 'SPL extension',
  30. 'mandatory' => true,
  31. 'condition' => extension_loaded('SPL'),
  32. 'by' => '<a href="http://www.yiiframework.com">Yii Framework</a>',
  33. ),
  34. array(
  35. 'name' => 'MBString extension',
  36. 'mandatory' => true,
  37. 'condition' => extension_loaded('mbstring'),
  38. 'by' => '<a href="http://www.php.net/manual/en/book.mbstring.php">Multibyte string</a> processing',
  39. 'memo' => 'Required for multibyte encoding string processing.'
  40. ),
  41. array(
  42. 'name' => 'Intl extension',
  43. 'mandatory' => false,
  44. 'condition' => $this->checkPhpExtensionVersion('intl', '1.0.2', '>='),
  45. 'by' => '<a href="http://www.php.net/manual/en/book.intl.php">Internationalization</a> support',
  46. 'memo' => 'PHP Intl extension 1.0.2 or higher is required when you want to use advanced parameters formatting
  47. in <code>Yii::t()</code>, <abbr title="Internationalized domain names">IDN</abbr>-feature of
  48. <code>EmailValidator</code> or <code>UrlValidator</code> or the <code>yii\i18n\Formatter</code> class.'
  49. ),
  50. );