Skip to content

Commit

Permalink
Merge pull request #1546 from MartinSadovy/master
Browse files Browse the repository at this point in the history
Requirements Checker: add intl extension checking
  • Loading branch information
dg committed Feb 6, 2016
2 parents 4fdb5bf + 371e6c9 commit 6eaef06
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/Requirements-Checker/checker.php
Expand Up @@ -205,6 +205,13 @@
'description' => 'Fileinfo extension or function <code>mime_content_type()</code> are absent. You will not be able to determine mime type of uploaded files.',
);

$tests[] = array(
'title' => 'Intl extension',
'required' => FALSE,
'passed' => class_exists('Transliterator', FALSE),
'description' => 'Class Transliterator is absent, the output of Nette\Utils\Strings::webalize() and Nette\Utils\Strings::toAscii() may not be accurate for non-latin alphabets.',
);

$tests[] = array(
'title' => 'HTTP_HOST or SERVER_NAME',
'required' => TRUE,
Expand Down

0 comments on commit 6eaef06

Please sign in to comment.