-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathphar.build.inc
40 lines (37 loc) · 895 Bytes
/
phar.build.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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(false)
->setShebang(true)
->addExclude([
'demo',
'example',
'runtime',
'node_modules',
'test',
'tmp',
])
->addFile([
'LICENSE',
'composer.json',
'README.md',
'test/bootstrap.php',
])
->setCliIndex('examples/app')
// ->setWebIndex('web/index.php')
// ->setVersionFile('config/config.php')
;
// Console 下的 Command Controller 命令类不去除注释,注释上是命令帮助信息
$compiler->setStripFilter(static function ($file) {
/** @var SplFileInfo $file */
$name = $file->getFilename();
return !str_contains($name, 'Command.php') && !str_contains($name, 'Controller.php');
});