SymfonyRequirements.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /*
  11. * Users of PHP 5.2 should be able to run the requirements checks.
  12. * This is why the file and all classes must be compatible with PHP 5.2+
  13. * (e.g. not using namespaces and closures).
  14. *
  15. * ************** CAUTION **************
  16. *
  17. * DO NOT EDIT THIS FILE as it will be overridden by Composer as part of
  18. * the installation/update process. The original file resides in the
  19. * SensioDistributionBundle.
  20. *
  21. * ************** CAUTION **************
  22. */
  23. /**
  24. * Represents a single PHP requirement, e.g. an installed extension.
  25. * It can be a mandatory requirement or an optional recommendation.
  26. * There is a special subclass, named PhpIniRequirement, to check a php.ini configuration.
  27. *
  28. * @author Tobias Schultze <http://tobion.de>
  29. */
  30. class Requirement
  31. {
  32. private $fulfilled;
  33. private $testMessage;
  34. private $helpText;
  35. private $helpHtml;
  36. private $optional;
  37. /**
  38. * Constructor that initializes the requirement.
  39. *
  40. * @param bool $fulfilled Whether the requirement is fulfilled
  41. * @param string $testMessage The message for testing the requirement
  42. * @param string $helpHtml The help text formatted in HTML for resolving the problem
  43. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  44. * @param bool $optional Whether this is only an optional recommendation not a mandatory requirement
  45. */
  46. public function __construct($fulfilled, $testMessage, $helpHtml, $helpText = null, $optional = false)
  47. {
  48. $this->fulfilled = (bool) $fulfilled;
  49. $this->testMessage = (string) $testMessage;
  50. $this->helpHtml = (string) $helpHtml;
  51. $this->helpText = null === $helpText ? strip_tags($this->helpHtml) : (string) $helpText;
  52. $this->optional = (bool) $optional;
  53. }
  54. /**
  55. * Returns whether the requirement is fulfilled.
  56. *
  57. * @return bool true if fulfilled, otherwise false
  58. */
  59. public function isFulfilled()
  60. {
  61. return $this->fulfilled;
  62. }
  63. /**
  64. * Returns the message for testing the requirement.
  65. *
  66. * @return string The test message
  67. */
  68. public function getTestMessage()
  69. {
  70. return $this->testMessage;
  71. }
  72. /**
  73. * Returns the help text for resolving the problem.
  74. *
  75. * @return string The help text
  76. */
  77. public function getHelpText()
  78. {
  79. return $this->helpText;
  80. }
  81. /**
  82. * Returns the help text formatted in HTML.
  83. *
  84. * @return string The HTML help
  85. */
  86. public function getHelpHtml()
  87. {
  88. return $this->helpHtml;
  89. }
  90. /**
  91. * Returns whether this is only an optional recommendation and not a mandatory requirement.
  92. *
  93. * @return bool true if optional, false if mandatory
  94. */
  95. public function isOptional()
  96. {
  97. return $this->optional;
  98. }
  99. }
  100. /**
  101. * Represents a PHP requirement in form of a php.ini configuration.
  102. *
  103. * @author Tobias Schultze <http://tobion.de>
  104. */
  105. class PhpIniRequirement extends Requirement
  106. {
  107. /**
  108. * Constructor that initializes the requirement.
  109. *
  110. * @param string $cfgName The configuration name used for ini_get()
  111. * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false,
  112. * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
  113. * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
  114. * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
  115. * Example: You require a config to be true but PHP later removes this config and defaults it to true internally.
  116. * @param string|null $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived)
  117. * @param string|null $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived)
  118. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  119. * @param bool $optional Whether this is only an optional recommendation not a mandatory requirement
  120. */
  121. public function __construct($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null, $optional = false)
  122. {
  123. $cfgValue = ini_get($cfgName);
  124. if (is_callable($evaluation)) {
  125. if (null === $testMessage || null === $helpHtml) {
  126. throw new InvalidArgumentException('You must provide the parameters testMessage and helpHtml for a callback evaluation.');
  127. }
  128. $fulfilled = call_user_func($evaluation, $cfgValue);
  129. } else {
  130. if (null === $testMessage) {
  131. $testMessage = sprintf('%s %s be %s in php.ini',
  132. $cfgName,
  133. $optional ? 'should' : 'must',
  134. $evaluation ? 'enabled' : 'disabled'
  135. );
  136. }
  137. if (null === $helpHtml) {
  138. $helpHtml = sprintf('Set <strong>%s</strong> to <strong>%s</strong> in php.ini<a href="#phpini">*</a>.',
  139. $cfgName,
  140. $evaluation ? 'on' : 'off'
  141. );
  142. }
  143. $fulfilled = $evaluation == $cfgValue;
  144. }
  145. parent::__construct($fulfilled || ($approveCfgAbsence && false === $cfgValue), $testMessage, $helpHtml, $helpText, $optional);
  146. }
  147. }
  148. /**
  149. * A RequirementCollection represents a set of Requirement instances.
  150. *
  151. * @author Tobias Schultze <http://tobion.de>
  152. */
  153. class RequirementCollection implements IteratorAggregate
  154. {
  155. private $requirements = array();
  156. /**
  157. * Gets the current RequirementCollection as an Iterator.
  158. *
  159. * @return Traversable A Traversable interface
  160. */
  161. public function getIterator()
  162. {
  163. return new ArrayIterator($this->requirements);
  164. }
  165. /**
  166. * Adds a Requirement.
  167. *
  168. * @param Requirement $requirement A Requirement instance
  169. */
  170. public function add(Requirement $requirement)
  171. {
  172. $this->requirements[] = $requirement;
  173. }
  174. /**
  175. * Adds a mandatory requirement.
  176. *
  177. * @param bool $fulfilled Whether the requirement is fulfilled
  178. * @param string $testMessage The message for testing the requirement
  179. * @param string $helpHtml The help text formatted in HTML for resolving the problem
  180. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  181. */
  182. public function addRequirement($fulfilled, $testMessage, $helpHtml, $helpText = null)
  183. {
  184. $this->add(new Requirement($fulfilled, $testMessage, $helpHtml, $helpText, false));
  185. }
  186. /**
  187. * Adds an optional recommendation.
  188. *
  189. * @param bool $fulfilled Whether the recommendation is fulfilled
  190. * @param string $testMessage The message for testing the recommendation
  191. * @param string $helpHtml The help text formatted in HTML for resolving the problem
  192. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  193. */
  194. public function addRecommendation($fulfilled, $testMessage, $helpHtml, $helpText = null)
  195. {
  196. $this->add(new Requirement($fulfilled, $testMessage, $helpHtml, $helpText, true));
  197. }
  198. /**
  199. * Adds a mandatory requirement in form of a php.ini configuration.
  200. *
  201. * @param string $cfgName The configuration name used for ini_get()
  202. * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false,
  203. * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
  204. * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
  205. * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
  206. * Example: You require a config to be true but PHP later removes this config and defaults it to true internally.
  207. * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived)
  208. * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived)
  209. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  210. */
  211. public function addPhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null)
  212. {
  213. $this->add(new PhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence, $testMessage, $helpHtml, $helpText, false));
  214. }
  215. /**
  216. * Adds an optional recommendation in form of a php.ini configuration.
  217. *
  218. * @param string $cfgName The configuration name used for ini_get()
  219. * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false,
  220. * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement
  221. * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false.
  222. * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin.
  223. * Example: You require a config to be true but PHP later removes this config and defaults it to true internally.
  224. * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived)
  225. * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived)
  226. * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags)
  227. */
  228. public function addPhpIniRecommendation($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null)
  229. {
  230. $this->add(new PhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence, $testMessage, $helpHtml, $helpText, true));
  231. }
  232. /**
  233. * Adds a requirement collection to the current set of requirements.
  234. *
  235. * @param RequirementCollection $collection A RequirementCollection instance
  236. */
  237. public function addCollection(RequirementCollection $collection)
  238. {
  239. $this->requirements = array_merge($this->requirements, $collection->all());
  240. }
  241. /**
  242. * Returns both requirements and recommendations.
  243. *
  244. * @return array Array of Requirement instances
  245. */
  246. public function all()
  247. {
  248. return $this->requirements;
  249. }
  250. /**
  251. * Returns all mandatory requirements.
  252. *
  253. * @return array Array of Requirement instances
  254. */
  255. public function getRequirements()
  256. {
  257. $array = array();
  258. foreach ($this->requirements as $req) {
  259. if (!$req->isOptional()) {
  260. $array[] = $req;
  261. }
  262. }
  263. return $array;
  264. }
  265. /**
  266. * Returns the mandatory requirements that were not met.
  267. *
  268. * @return array Array of Requirement instances
  269. */
  270. public function getFailedRequirements()
  271. {
  272. $array = array();
  273. foreach ($this->requirements as $req) {
  274. if (!$req->isFulfilled() && !$req->isOptional()) {
  275. $array[] = $req;
  276. }
  277. }
  278. return $array;
  279. }
  280. /**
  281. * Returns all optional recommendations.
  282. *
  283. * @return array Array of Requirement instances
  284. */
  285. public function getRecommendations()
  286. {
  287. $array = array();
  288. foreach ($this->requirements as $req) {
  289. if ($req->isOptional()) {
  290. $array[] = $req;
  291. }
  292. }
  293. return $array;
  294. }
  295. /**
  296. * Returns the recommendations that were not met.
  297. *
  298. * @return array Array of Requirement instances
  299. */
  300. public function getFailedRecommendations()
  301. {
  302. $array = array();
  303. foreach ($this->requirements as $req) {
  304. if (!$req->isFulfilled() && $req->isOptional()) {
  305. $array[] = $req;
  306. }
  307. }
  308. return $array;
  309. }
  310. /**
  311. * Returns whether a php.ini configuration is not correct.
  312. *
  313. * @return bool php.ini configuration problem?
  314. */
  315. public function hasPhpIniConfigIssue()
  316. {
  317. foreach ($this->requirements as $req) {
  318. if (!$req->isFulfilled() && $req instanceof PhpIniRequirement) {
  319. return true;
  320. }
  321. }
  322. return false;
  323. }
  324. /**
  325. * Returns the PHP configuration file (php.ini) path.
  326. *
  327. * @return string|false php.ini file path
  328. */
  329. public function getPhpIniConfigPath()
  330. {
  331. return get_cfg_var('cfg_file_path');
  332. }
  333. }
  334. /**
  335. * This class specifies all requirements and optional recommendations that
  336. * are necessary to run the Symfony Standard Edition.
  337. *
  338. * @author Tobias Schultze <http://tobion.de>
  339. * @author Fabien Potencier <fabien@symfony.com>
  340. */
  341. class SymfonyRequirements extends RequirementCollection
  342. {
  343. const REQUIRED_PHP_VERSION = '5.3.3';
  344. /**
  345. * Constructor that initializes the requirements.
  346. */
  347. public function __construct()
  348. {
  349. /* mandatory requirements follow */
  350. $installedPhpVersion = phpversion();
  351. $this->addRequirement(
  352. version_compare($installedPhpVersion, self::REQUIRED_PHP_VERSION, '>='),
  353. sprintf('PHP version must be at least %s (%s installed)', self::REQUIRED_PHP_VERSION, $installedPhpVersion),
  354. sprintf('You are running PHP version "<strong>%s</strong>", but Symfony needs at least PHP "<strong>%s</strong>" to run.
  355. Before using Symfony, upgrade your PHP installation, preferably to the latest version.',
  356. $installedPhpVersion, self::REQUIRED_PHP_VERSION),
  357. sprintf('Install PHP %s or newer (installed version is %s)', self::REQUIRED_PHP_VERSION, $installedPhpVersion)
  358. );
  359. $this->addRequirement(
  360. version_compare($installedPhpVersion, '5.3.16', '!='),
  361. 'PHP version must not be 5.3.16 as Symfony won\'t work properly with it',
  362. 'Install PHP 5.3.17 or newer (or downgrade to an earlier PHP version)'
  363. );
  364. $this->addRequirement(
  365. is_dir(__DIR__.'/../vendor/composer'),
  366. 'Vendor libraries must be installed',
  367. 'Vendor libraries are missing. Install composer following instructions from <a href="http://getcomposer.org/">http://getcomposer.org/</a>. '.
  368. 'Then run "<strong>php composer.phar install</strong>" to install them.'
  369. );
  370. $cacheDir = is_dir(__DIR__.'/../var/cache') ? __DIR__.'/../var/cache' : __DIR__.'/cache';
  371. $this->addRequirement(
  372. is_writable($cacheDir),
  373. 'app/cache/ or var/cache/ directory must be writable',
  374. 'Change the permissions of either "<strong>app/cache/</strong>" or "<strong>var/cache/</strong>" directory so that the web server can write into it.'
  375. );
  376. $logsDir = is_dir(__DIR__.'/../var/logs') ? __DIR__.'/../var/logs' : __DIR__.'/logs';
  377. $this->addRequirement(
  378. is_writable($logsDir),
  379. 'app/logs/ or var/logs/ directory must be writable',
  380. 'Change the permissions of either "<strong>app/logs/</strong>" or "<strong>var/logs/</strong>" directory so that the web server can write into it.'
  381. );
  382. $this->addPhpIniRequirement(
  383. 'date.timezone', true, false,
  384. 'date.timezone setting must be set',
  385. 'Set the "<strong>date.timezone</strong>" setting in php.ini<a href="#phpini">*</a> (like Europe/Paris).'
  386. );
  387. if (version_compare($installedPhpVersion, self::REQUIRED_PHP_VERSION, '>=')) {
  388. $timezones = array();
  389. foreach (DateTimeZone::listAbbreviations() as $abbreviations) {
  390. foreach ($abbreviations as $abbreviation) {
  391. $timezones[$abbreviation['timezone_id']] = true;
  392. }
  393. }
  394. $this->addRequirement(
  395. isset($timezones[@date_default_timezone_get()]),
  396. sprintf('Configured default timezone "%s" must be supported by your installation of PHP', @date_default_timezone_get()),
  397. 'Your default timezone is not supported by PHP. Check for typos in your <strong>php.ini</strong> file and have a look at the list of deprecated timezones at <a href="http://php.net/manual/en/timezones.others.php">http://php.net/manual/en/timezones.others.php</a>.'
  398. );
  399. }
  400. $this->addRequirement(
  401. function_exists('json_encode'),
  402. 'json_encode() must be available',
  403. 'Install and enable the <strong>JSON</strong> extension.'
  404. );
  405. $this->addRequirement(
  406. function_exists('session_start'),
  407. 'session_start() must be available',
  408. 'Install and enable the <strong>session</strong> extension.'
  409. );
  410. $this->addRequirement(
  411. function_exists('ctype_alpha'),
  412. 'ctype_alpha() must be available',
  413. 'Install and enable the <strong>ctype</strong> extension.'
  414. );
  415. $this->addRequirement(
  416. function_exists('token_get_all'),
  417. 'token_get_all() must be available',
  418. 'Install and enable the <strong>Tokenizer</strong> extension.'
  419. );
  420. $this->addRequirement(
  421. function_exists('simplexml_import_dom'),
  422. 'simplexml_import_dom() must be available',
  423. 'Install and enable the <strong>SimpleXML</strong> extension.'
  424. );
  425. if (function_exists('apc_store') && ini_get('apc.enabled')) {
  426. if (version_compare($installedPhpVersion, '5.4.0', '>=')) {
  427. $this->addRequirement(
  428. version_compare(phpversion('apc'), '3.1.13', '>='),
  429. 'APC version must be at least 3.1.13 when using PHP 5.4',
  430. 'Upgrade your <strong>APC</strong> extension (3.1.13+).'
  431. );
  432. } else {
  433. $this->addRequirement(
  434. version_compare(phpversion('apc'), '3.0.17', '>='),
  435. 'APC version must be at least 3.0.17',
  436. 'Upgrade your <strong>APC</strong> extension (3.0.17+).'
  437. );
  438. }
  439. }
  440. $this->addPhpIniRequirement('detect_unicode', false);
  441. if (extension_loaded('suhosin')) {
  442. $this->addPhpIniRequirement(
  443. 'suhosin.executor.include.whitelist',
  444. create_function('$cfgValue', 'return false !== stripos($cfgValue, "phar");'),
  445. false,
  446. 'suhosin.executor.include.whitelist must be configured correctly in php.ini',
  447. 'Add "<strong>phar</strong>" to <strong>suhosin.executor.include.whitelist</strong> in php.ini<a href="#phpini">*</a>.'
  448. );
  449. }
  450. if (extension_loaded('xdebug')) {
  451. $this->addPhpIniRequirement(
  452. 'xdebug.show_exception_trace', false, true
  453. );
  454. $this->addPhpIniRequirement(
  455. 'xdebug.scream', false, true
  456. );
  457. $this->addPhpIniRecommendation(
  458. 'xdebug.max_nesting_level',
  459. create_function('$cfgValue', 'return $cfgValue > 100;'),
  460. true,
  461. 'xdebug.max_nesting_level should be above 100 in php.ini',
  462. 'Set "<strong>xdebug.max_nesting_level</strong>" to e.g. "<strong>250</strong>" in php.ini<a href="#phpini">*</a> to stop Xdebug\'s infinite recursion protection erroneously throwing a fatal error in your project.'
  463. );
  464. }
  465. $pcreVersion = defined('PCRE_VERSION') ? (float) PCRE_VERSION : null;
  466. $this->addRequirement(
  467. null !== $pcreVersion,
  468. 'PCRE extension must be available',
  469. 'Install the <strong>PCRE</strong> extension (version 8.0+).'
  470. );
  471. if (extension_loaded('mbstring')) {
  472. $this->addPhpIniRequirement(
  473. 'mbstring.func_overload',
  474. create_function('$cfgValue', 'return (int) $cfgValue === 0;'),
  475. true,
  476. 'string functions should not be overloaded',
  477. 'Set "<strong>mbstring.func_overload</strong>" to <strong>0</strong> in php.ini<a href="#phpini">*</a> to disable function overloading by the mbstring extension.'
  478. );
  479. }
  480. /* optional recommendations follow */
  481. if (file_exists(__DIR__.'/../vendor/composer')) {
  482. require_once __DIR__.'/../vendor/autoload.php';
  483. try {
  484. $r = new \ReflectionClass('Sensio\Bundle\DistributionBundle\SensioDistributionBundle');
  485. $contents = file_get_contents(dirname($r->getFileName()).'/Resources/skeleton/app/SymfonyRequirements.php');
  486. } catch (\ReflectionException $e) {
  487. $contents = '';
  488. }
  489. $this->addRecommendation(
  490. file_get_contents(__FILE__) === $contents,
  491. 'Requirements file should be up-to-date',
  492. 'Your requirements file is outdated. Run composer install and re-check your configuration.'
  493. );
  494. }
  495. $this->addRecommendation(
  496. version_compare($installedPhpVersion, '5.3.4', '>='),
  497. 'You should use at least PHP 5.3.4 due to PHP bug #52083 in earlier versions',
  498. 'Your project might malfunction randomly due to PHP bug #52083 ("Notice: Trying to get property of non-object"). Install PHP 5.3.4 or newer.'
  499. );
  500. $this->addRecommendation(
  501. version_compare($installedPhpVersion, '5.3.8', '>='),
  502. 'When using annotations you should have at least PHP 5.3.8 due to PHP bug #55156',
  503. 'Install PHP 5.3.8 or newer if your project uses annotations.'
  504. );
  505. $this->addRecommendation(
  506. version_compare($installedPhpVersion, '5.4.0', '!='),
  507. 'You should not use PHP 5.4.0 due to the PHP bug #61453',
  508. 'Your project might not work properly due to the PHP bug #61453 ("Cannot dump definitions which have method calls"). Install PHP 5.4.1 or newer.'
  509. );
  510. $this->addRecommendation(
  511. version_compare($installedPhpVersion, '5.4.11', '>='),
  512. 'When using the logout handler from the Symfony Security Component, you should have at least PHP 5.4.11 due to PHP bug #63379 (as a workaround, you can also set invalidate_session to false in the security logout handler configuration)',
  513. 'Install PHP 5.4.11 or newer if your project uses the logout handler from the Symfony Security Component.'
  514. );
  515. $this->addRecommendation(
  516. (version_compare($installedPhpVersion, '5.3.18', '>=') && version_compare($installedPhpVersion, '5.4.0', '<'))
  517. ||
  518. version_compare($installedPhpVersion, '5.4.8', '>='),
  519. 'You should use PHP 5.3.18+ or PHP 5.4.8+ to always get nice error messages for fatal errors in the development environment due to PHP bug #61767/#60909',
  520. 'Install PHP 5.3.18+ or PHP 5.4.8+ if you want nice error messages for all fatal errors in the development environment.'
  521. );
  522. if (null !== $pcreVersion) {
  523. $this->addRecommendation(
  524. $pcreVersion >= 8.0,
  525. sprintf('PCRE extension should be at least version 8.0 (%s installed)', $pcreVersion),
  526. '<strong>PCRE 8.0+</strong> is preconfigured in PHP since 5.3.2 but you are using an outdated version of it. Symfony probably works anyway but it is recommended to upgrade your PCRE extension.'
  527. );
  528. }
  529. $this->addRecommendation(
  530. class_exists('DomDocument'),
  531. 'PHP-DOM and PHP-XML modules should be installed',
  532. 'Install and enable the <strong>PHP-DOM</strong> and the <strong>PHP-XML</strong> modules.'
  533. );
  534. $this->addRecommendation(
  535. function_exists('mb_strlen'),
  536. 'mb_strlen() should be available',
  537. 'Install and enable the <strong>mbstring</strong> extension.'
  538. );
  539. $this->addRecommendation(
  540. function_exists('iconv'),
  541. 'iconv() should be available',
  542. 'Install and enable the <strong>iconv</strong> extension.'
  543. );
  544. $this->addRecommendation(
  545. function_exists('utf8_decode'),
  546. 'utf8_decode() should be available',
  547. 'Install and enable the <strong>XML</strong> extension.'
  548. );
  549. $this->addRecommendation(
  550. function_exists('filter_var'),
  551. 'filter_var() should be available',
  552. 'Install and enable the <strong>filter</strong> extension.'
  553. );
  554. if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
  555. $this->addRecommendation(
  556. function_exists('posix_isatty'),
  557. 'posix_isatty() should be available',
  558. 'Install and enable the <strong>php_posix</strong> extension (used to colorize the CLI output).'
  559. );
  560. }
  561. $this->addRecommendation(
  562. extension_loaded('intl'),
  563. 'intl extension should be available',
  564. 'Install and enable the <strong>intl</strong> extension (used for validators).'
  565. );
  566. if (extension_loaded('intl')) {
  567. // in some WAMP server installations, new Collator() returns null
  568. $this->addRecommendation(
  569. null !== new Collator('fr_FR'),
  570. 'intl extension should be correctly configured',
  571. 'The intl extension does not behave properly. This problem is typical on PHP 5.3.X x64 WIN builds.'
  572. );
  573. // check for compatible ICU versions (only done when you have the intl extension)
  574. if (defined('INTL_ICU_VERSION')) {
  575. $version = INTL_ICU_VERSION;
  576. } else {
  577. $reflector = new ReflectionExtension('intl');
  578. ob_start();
  579. $reflector->info();
  580. $output = strip_tags(ob_get_clean());
  581. preg_match('/^ICU version +(?:=> )?(.*)$/m', $output, $matches);
  582. $version = $matches[1];
  583. }
  584. $this->addRecommendation(
  585. version_compare($version, '4.0', '>='),
  586. 'intl ICU version should be at least 4+',
  587. 'Upgrade your <strong>intl</strong> extension with a newer ICU version (4+).'
  588. );
  589. $this->addPhpIniRecommendation(
  590. 'intl.error_level',
  591. create_function('$cfgValue', 'return (int) $cfgValue === 0;'),
  592. true,
  593. 'intl.error_level should be 0 in php.ini',
  594. 'Set "<strong>intl.error_level</strong>" to "<strong>0</strong>" in php.ini<a href="#phpini">*</a> to inhibit the messages when an error occurs in ICU functions.'
  595. );
  596. }
  597. $accelerator =
  598. (extension_loaded('eaccelerator') && ini_get('eaccelerator.enable'))
  599. ||
  600. (extension_loaded('apc') && ini_get('apc.enabled'))
  601. ||
  602. (extension_loaded('Zend Optimizer+') && ini_get('zend_optimizerplus.enable'))
  603. ||
  604. (extension_loaded('Zend OPcache') && ini_get('opcache.enable'))
  605. ||
  606. (extension_loaded('xcache') && ini_get('xcache.cacher'))
  607. ||
  608. (extension_loaded('wincache') && ini_get('wincache.ocenabled'))
  609. ;
  610. $this->addRecommendation(
  611. $accelerator,
  612. 'a PHP accelerator should be installed',
  613. 'Install and/or enable a <strong>PHP accelerator</strong> (highly recommended).'
  614. );
  615. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
  616. $this->addRecommendation(
  617. $this->getRealpathCacheSize() > 1000,
  618. 'realpath_cache_size should be above 1024 in php.ini',
  619. 'Set "<strong>realpath_cache_size</strong>" to e.g. "<strong>1024</strong>" in php.ini<a href="#phpini">*</a> to improve performance on windows.'
  620. );
  621. }
  622. $this->addPhpIniRecommendation('short_open_tag', false);
  623. $this->addPhpIniRecommendation('magic_quotes_gpc', false, true);
  624. $this->addPhpIniRecommendation('register_globals', false, true);
  625. $this->addPhpIniRecommendation('session.auto_start', false);
  626. $this->addRecommendation(
  627. class_exists('PDO'),
  628. 'PDO should be installed',
  629. 'Install <strong>PDO</strong> (mandatory for Doctrine).'
  630. );
  631. if (class_exists('PDO')) {
  632. $drivers = PDO::getAvailableDrivers();
  633. $this->addRecommendation(
  634. count($drivers) > 0,
  635. sprintf('PDO should have some drivers installed (currently available: %s)', count($drivers) ? implode(', ', $drivers) : 'none'),
  636. 'Install <strong>PDO drivers</strong> (mandatory for Doctrine).'
  637. );
  638. }
  639. }
  640. /**
  641. * Loads realpath_cache_size from php.ini and converts it to int.
  642. *
  643. * (e.g. 16k is converted to 16384 int)
  644. *
  645. * @return int
  646. */
  647. protected function getRealpathCacheSize()
  648. {
  649. $size = ini_get('realpath_cache_size');
  650. $size = trim($size);
  651. $unit = strtolower(substr($size, -1, 1));
  652. switch ($unit) {
  653. case 'g':
  654. return $size * 1024 * 1024 * 1024;
  655. case 'm':
  656. return $size * 1024 * 1024;
  657. case 'k':
  658. return $size * 1024;
  659. default:
  660. return (int) $size;
  661. }
  662. }
  663. }