1 Star 0 Fork 0

Wang Ningkai / php-redis-cli

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
phar.build.inc 812 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wang Ningkai 提交于 2019-10-31 18:21 . 简化命令行操作
<?php
/**
* Created by PhpStorm.
* - the is a config file for compile phar package.
* User: Inhere
* Date: 2018/1/26 0026
* Time: 22:11
* @var \Inhere\Console\Component\PharCompiler $compiler
*/
// config
$compiler
->stripComments(true)
->setShebang(true)
->addExclude([
'demo',
'test',
'tmp',
])
->addFile([
'LICENSE',
'composer.json',
'README.md',
'config/bootstrap.php',
])
->setCliIndex('bin/app');
// Console 下的 Command Controller 命令类不去除注释,注释上是命令帮助信息
$compiler->setStripFilter(static function ($file) {
/** @var \SplFileInfo $file */
$name = $file->getFilename();
return false === strpos($name, 'Command.php') && false === strpos($name, 'Controller.php');
});
1
https://gitee.com/wangningkai/php-redis-cli.git
git@gitee.com:wangningkai/php-redis-cli.git
wangningkai
php-redis-cli
php-redis-cli
master

搜索帮助