082a0130c2
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
33 lines
789 B
PHP
33 lines
789 B
PHP
<?php
|
|
|
|
use Doctrine\Common\Annotations\AnnotationRegistry;
|
|
|
|
if (!$loader = @include __DIR__.'/../vendor/autoload.php') {
|
|
|
|
$message = <<< EOF
|
|
<p>You must set up the project dependencies by running the following commands:</p>
|
|
<pre>
|
|
curl -s http://getcomposer.org/installer | php
|
|
php composer.phar install
|
|
</pre>
|
|
|
|
EOF;
|
|
|
|
if (PHP_SAPI === 'cli') {
|
|
$message = strip_tags($message);
|
|
}
|
|
|
|
die($message);
|
|
}
|
|
|
|
// intl
|
|
if (!function_exists('intl_get_error_code')) {
|
|
require_once __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php';
|
|
|
|
$loader->add('', __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs');
|
|
}
|
|
|
|
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
|
|
|
|
return $loader;
|