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

define('PHPDOX_VERSION', '%development%');

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

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

        define('PHPDOX_COMPOSER_INSTALL', $file);

        break;
    }
}

if (!defined('PHPDOX_COMPOSER_INSTALL')) {
    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
    );
}

$factory = new \TheSeer\phpDox\Factory();
$factory->getInstanceFor('CLI')->run();
