Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit b3ba102

Browse files
committed
updated deps
1 parent 69dddda commit b3ba102

File tree

3 files changed

+57
-45
lines changed

3 files changed

+57
-45
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"require": {
1414
"php": ">=5.5.9",
15-
"symfony/symfony": "3.1.*",
15+
"symfony/symfony": "3.2.x-dev",
1616
"doctrine/orm": "^2.5",
1717
"doctrine/doctrine-bundle": "^1.6",
1818
"doctrine/doctrine-cache-bundle": "^1.2",

composer.lock

Lines changed: 46 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

var/SymfonyRequirements.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,10 +681,17 @@ function_exists('posix_isatty'),
681681

682682
if (class_exists('Symfony\Component\Intl\Intl')) {
683683
$this->addRecommendation(
684-
\Symfony\Component\Intl\Intl::getIcuDataVersion() === \Symfony\Component\Intl\Intl::getIcuVersion(),
685-
sprintf('intl ICU version installed on your system (%s) should match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()),
686-
'In most cases you should be fine, but please verify there is no inconsistencies between data provided by Symfony and the intl extension. See https://github.com/symfony/symfony/issues/15007 for an example of inconsistencies you might run into.'
684+
\Symfony\Component\Intl\Intl::getIcuDataVersion() <= \Symfony\Component\Intl\Intl::getIcuVersion(),
685+
sprintf('intl ICU version installed on your system is outdated (%s) and does not match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()),
686+
'To get the latest internationalization data upgrade the ICU system package and the intl PHP extension.'
687687
);
688+
if (\Symfony\Component\Intl\Intl::getIcuDataVersion() <= \Symfony\Component\Intl\Intl::getIcuVersion()) {
689+
$this->addRecommendation(
690+
\Symfony\Component\Intl\Intl::getIcuDataVersion() === \Symfony\Component\Intl\Intl::getIcuVersion(),
691+
sprintf('intl ICU version installed on your system (%s) does not match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()),
692+
'To avoid internationalization data incosistencies upgrade the symfony/intl component.'
693+
);
694+
}
688695
}
689696

690697
$this->addPhpIniRecommendation(

0 commit comments

Comments
 (0)