1 Star 0 Fork 150

maple / yiiboot

forked from penngo / yiiboot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
yii 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
penngo 提交于 2021-08-12 14:12 . no message
#!/usr/bin/env php
<?php
/**
* Yii console bootstrap file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/common/config/bootstrap.php');
require(__DIR__ . '/console/config/bootstrap.php');
$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/common/config/main.php'),
require(__DIR__ . '/console/config/main.php')
);
$application = new yii\console\Application($config);
$exitCode = $application->run();
exit($exitCode);
PHP
1
https://gitee.com/zl_maple/chadmin.git
git@gitee.com:zl_maple/chadmin.git
zl_maple
chadmin
yiiboot
master

搜索帮助