1 Star 0 Fork 165

kinglong8362 / EduSoho

forked from EduSoho / EduSoho 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.php_cs.dist 543 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wellming Li 提交于 2017-04-19 20:06 . fix cs
<?php
$finder = Symfony\Component\Finder\Finder::create()
->files()
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
->exclude('vendor')
->exclude('bin')
->in(__DIR__.'/src/AppBundle')
->in(__DIR__.'/src/Biz')
->in(__DIR__.'/bootstrap')
->in(__DIR__.'/migrations')
->in(__DIR__.'/tests')
;
return PhpCsFixer\Config::create()
->setCacheFile(__DIR__.'/.php_cs.cache')
->setRules(array(
'@Symfony' => true,
'phpdoc_summary' => false,
))
->setFinder($finder)
;
PHP
1
https://gitee.com/kinglong8362/EduSoho.git
git@gitee.com:kinglong8362/EduSoho.git
kinglong8362
EduSoho
EduSoho
master

搜索帮助