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

/*
 * This file is part of the symfony package.
 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
 * 
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

// project exists?
if (file_exists('config/config.php'))
{
  include('config/config.php');
}

if (!isset($sf_symfony_lib_dir))
{
  if (is_readable(dirname(__FILE__).'/../../lib/VERSION'))
  {
    // SVN
    $sf_symfony_lib_dir  = realpath(dirname(__FILE__).'/../../lib');
    $sf_symfony_data_dir = realpath(dirname(__FILE__).'/..');
  }
  else
  {
    // PEAR
    $sf_symfony_lib_dir  = '@PEAR-DIR@/symfony';
    $sf_symfony_data_dir = '@DATA-DIR@/symfony';

    if (!is_dir($sf_symfony_lib_dir))
    {
      throw new Exception('Unable to find symfony libraries');
    }
  }
}

include($sf_symfony_data_dir.'/bin/symfony.php');
