initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?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.
*/
require_once(dirname(__FILE__).'/unit.php');
require_once(sfConfig::get('sf_symfony_lib_dir').'/command/sfCommandApplication.class.php');
require_once(sfConfig::get('sf_symfony_lib_dir').'/command/sfSymfonyCommandApplication.class.php');
$tmpDir = sys_get_temp_dir().DIRECTORY_SEPARATOR.'sf_'.rand(11111, 99999);
mkdir($tmpDir, 0777, true);
chdir($tmpDir);
$application = new sfSymfonyCommandApplication(new sfEventDispatcher(), new sfFormatter(), array(
'symfony_lib_dir' => sfConfig::get('sf_symfony_lib_dir'),
));