56 Star 335 Fork 138

白俊遥 / laravel-bjyblog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.php-cs-fixer.php 521 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
declare(strict_types=1);
use Baijunyao\PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = Finder::create()
->notPath('app/Console/Kernel.php')
->notPath('app/Http/Kernel.php')
->exclude('bootstrap')
->exclude('config')
->exclude('database/factories')
->exclude('public')
->exclude('resources')
->exclude('storage')
->notPath('_ide_helper.php')
->notPath('_ide_helper_models.php')
->notPath('server.php')
->in(__DIR__);
return (new Config())->setFinder($finder);
PHP
1
https://gitee.com/baijunyao/laravel-bjyblog.git
git@gitee.com:baijunyao/laravel-bjyblog.git
baijunyao
laravel-bjyblog
laravel-bjyblog
master

搜索帮助