toutpratique/vendor/robmorgan/phinx/tests/phpunit-bootstrap.php
2015-10-16 15:09:01 +02:00

23 lines
586 B
PHP

<?php
/*
* This file is part of the Phinx package.
*
* (c) Rob Morgan <robbym@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$autoloader = require __DIR__ . '/../src/composer_autoloader.php';
if (!$autoloader()) {
die(
'You need to set up the project dependencies using the following commands:' . PHP_EOL .
'curl -s http://getcomposer.org/installer | php' . PHP_EOL .
'php composer.phar install' . PHP_EOL
);
}
require __DIR__ . '/TestConfiguration.php';