forked from mautic/mautic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.php
47 lines (44 loc) · 1.73 KB
/
.php-cs-fixer.php
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
41
42
43
44
45
46
47
<?php
require 'autoload.php';
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/app/bundles')
->exclude('CoreBundle/Tests/_support/_generated')
->in(__DIR__.'/app/config')
->in(__DIR__.'/app/middlewares')
->in(__DIR__.'/app/migrations')
->in(__DIR__.'/plugins')
->in(__DIR__.'/.github/workflows/mautic-asset-upload')
->append([__DIR__.'/rector.php', __DIR__.'/rector-older-symfony.php', __DIR__.'/.php-cs-fixer.php', __DIR__.'/ecs.php']);
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'binary_operator_spaces' => [
'operators' => [
'=>' => 'align',
'=' => 'align',
],
],
'phpdoc_to_comment' => false,
'ordered_imports' => true,
'array_syntax' => [
'syntax' => 'short',
],
'no_unused_imports' => true,
/**
* Our templates rely heavily on things like endforeach, endif, etc.
* This setting should be turned off at least until we've switched to Twig
* (which is required for Symfony 5).
*/
'no_alternative_syntax' => false,
'header_comment' => [
'header' => '',
],
'Mautic/no_table_prefix_definition_in_tests' => true,
'multiline_whitespace_before_semicolons' => true,
'nullable_type_declaration_for_default_null_value' => false, // Enforces potential BC breaks. Enable for Mautic 6.
'no_superfluous_phpdoc_tags' => [
'allow_mixed' => true,
],
])
->registerCustomFixers([new Mautic\CodingStandards\PhpCSFixer\NoTablePrefixDefinitionInTestsFixer()])
->setFinder($finder);