#!/usr/bin/env php
<?php

define('MIGRATIONS_DEFAULT_PATH', '../../data/migrations/');

$files = array(
    __DIR__ . '/../../../autoload.php',
);

$found = false;

foreach ($files as $file) {
    if (file_exists($file)) {
        require $file;
        $found = true;

        break;
    }
}

if (!$found) {
    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
    );
}

Phinx2SQL\Phinx2SQL::main($argc, $argv);
