build 523 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env php
<?php
/**
 * build script file.
 *
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

// fcgi doesn't have STDIN defined by default
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));

Qiang Xue committed
14
require(__DIR__ . '/../framework/yii/Yii.php');
Qiang Xue committed
15

Alexander Makarov committed
16
$application = new yii\console\Application([
Qiang Xue committed
17 18 19
	'id' => 'yii-build',
	'basePath' => __DIR__,
	'controllerNamespace' => 'yii\build\controllers',
Alexander Makarov committed
20
]);
Qiang Xue committed
21
$application->run();