Skip to content

Commit 23706c4

Browse files
committed
updated VENDORS for 2.3.4
1 parent 51175dd commit 23706c4

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

app/SymfonyRequirements.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,15 @@ function_exists('simplexml_import_dom'),
557557
$this->addRecommendation(
558558
version_compare($installedPhpVersion, '5.4.11', '>='),
559559
'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)',
560-
'Install PHP 5.4.11 or newer if your project the logout handler from the Symfony Security Component.'
560+
'Install PHP 5.4.11 or newer if your project uses the logout handler from the Symfony Security Component.'
561+
);
562+
563+
$this->addRecommendation(
564+
(version_compare($installedPhpVersion, '5.3.18', '>=') && version_compare($installedPhpVersion, '5.4.0', '<'))
565+
||
566+
version_compare($installedPhpVersion, '5.4.8', '>='),
567+
'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',
568+
'Install PHP 5.3.18+ or PHP 5.4.8+ if you want nice error messages for all fatal errors in the development environment.'
561569
);
562570

563571
if (null !== $pcreVersion) {

0 commit comments

Comments
 (0)