added Locale stubs to the autoloader so that people can run Symfony unit tests even if they don't have intl installed

This commit is contained in:
Fabien Potencier 2011-04-28 10:08:16 +02:00
parent 1bc8071d4e
commit 2291af41c5
1 changed files with 11 additions and 8 deletions

View File

@ -19,3 +19,6 @@ $loader->registerPrefixes(array(
'Twig_' => __DIR__.'/vendor/twig/lib',
));
$loader->register();
$loader->registerPrefixFallback(array(
__DIR__.'/../vendor/symfony/src/Symfony/Component/Locale/Resources/stubs',
));