public
Description: A BitTorrent tracker that makes podcast RSS feeds, written in the Symfony PHP framework.
Homepage: http://limecast.com/
Clone URL: git://github.com/WIZARDISHUNGRY/sflimetracker.git
sflimetracker / symfony
100755 19 lines (15 sloc) 0.575 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env php
<?php
 
/*
* This file is part of the symfony package.
* (c) 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.
*/
 
if (version_compare(PHP_VERSION, '5.1.0') === -1) {
    exit('PHP version 5.1.0+ required; ' . PHP_VERSION . " installed\n");
}
 
chdir(dirname(__FILE__));
require_once(dirname(__FILE__).'/config/ProjectConfiguration.class.php');
include(sfCoreAutoload::getInstance()->getBaseDir().'/command/cli.php');