#!/usr/bin/env php
<?php
/*
 * psx
 * A object oriented and modular based PHP framework for developing
 * dynamic web applications. For the current version and informations
 * visit <http://phpsx.org>
 *
 * Copyright (c) 2010-2014 Christoph Kappestein <k42b3.x@gmail.com>
 *
 * This file is part of psx. psx is free software: you can
 * redistribute it and/or modify it under the terms of the
 * GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or any later version.
 *
 * psx is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with psx. If not, see <http://www.gnu.org/licenses/>.
 */

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

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

		define('PSX_COMPOSER_INSTALL', $file);
		break;
	}
}

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

$container = new PSX\Dependency\DefaultContainer();
$container->setParameter('config.file', strstr(PSX_COMPOSER_INSTALL, 'vendor', true) . 'configuration.php');

PSX\Bootstrap::setupEnvironment($container->get('config'));

$container->get('console')->run();
