代码拉取完成,页面将自动刷新
<?php
/**
* Created by PhpStorm.
* - the is a config file for compile phar package.
* User: Inhere
* Date: 2018/1/26 0026
* Time: 22:11
* @var \Swoft\Devtool\PharCompiler $compiler
*/
// config
$compiler
->stripComments(true)
->setShebang(true)
->addSuffix('.json')// for add composer.json
->addExclude([
'test',
'tests',
'runtime',
'eaglewu',
])
->addFile([
'LICENSE',
'README.md',
])
->setCliIndex('bin/swoft')
// ->setWebIndex('web/index.php')
// ->setVersionFile('config/config.php')
;
// Command Controller 命令类不去除注释,注释上是命令帮助信息
$compiler->setStripFilter(function ($file) {
/** @var \SplFileInfo $file */
$path = $file->getPath();
if (strpos($path, 'swoft')) {
return false;
}
return false === strpos($file->getFilename(), 'Command.php');
});
你可以在登录后,发表评论
评论 ( 0 )