23 lines
586 B
PHP
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';
|