mirror of
https://github.com/doctrine/shards.git
synced 2026-03-24 00:22:10 +01:00
13 lines
298 B
PHP
13 lines
298 B
PHP
<?php
|
|
|
|
if (!$loader = @include __DIR__ . '/../vendor/.composer/autoload.php') {
|
|
die(<<<'EOT'
|
|
You must set up the project dependencies, run the following commands:
|
|
wget http://getcomposer.org/composer.phar
|
|
php composer.phar install
|
|
EOT
|
|
);
|
|
}
|
|
|
|
$loader->add('Doctrine\Tests\Shards', __DIR__ );
|