PHP常用扩展
# 使用 CS-Fixer 来强制编码规范
CS Fixer 是确保开发组成员都统一遵循编码规范的好方法,请参阅 PSR 编码标准 。文档建议您全局安装它,但是按照我在容器中做所有事情的原则,我建议通过:
composer require friendsofphp/php-cs-fixer
1
# 使用 PHP Stan
# 使用 .editorconfig
[*]
end_of_line = lf
insert_final_newline = true
[*.php]
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
indent_size = 4
[.html]
indent_style = space
indent_size = 2
[{composer.json}]
indent_style = space
indent_size = 4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
上次更新: 2023/09/22, 16:54:32