- 新增 ChangeLogLogic 和 ChangeLog 模型用于记录数据变更日志 - 引入 third-party 包 chance-fyi/operation-log 实现日志记录功能 - 在 composer.json 和 config/thinkorm.php 中添加相关配置
28 lines
639 B
PHP
28 lines
639 B
PHP
<?php
|
|
|
|
use PhpCsFixer\Config;
|
|
use PhpCsFixer\Finder;
|
|
|
|
return (new Config())
|
|
->setFinder(
|
|
Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('vendor')
|
|
)
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'@PhpCsFixer' => true,
|
|
'@DoctrineAnnotation' => true,
|
|
'list_syntax' => [
|
|
'syntax' => 'short'
|
|
],
|
|
'concat_space' => [
|
|
'spacing' => 'one'
|
|
],
|
|
'global_namespace_import' => [
|
|
'import_classes' => true,
|
|
'import_constants' => true,
|
|
'import_functions' => true,
|
|
],
|
|
])
|
|
->setUsingCache(false); |