-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.php
49 lines (38 loc) · 985 Bytes
/
.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
48
49
<?php
declare(strict_types=1);
/**
* Copyright (c) 2022-2023 Flexic-Systems
*
* @author Hendrik Legge <[email protected]>
*
* @version 2.0.0
*/
use Ergebnis\PhpCsFixer\Config;
$year = \date('Y');
$header = <<<TXT
Copyright (c) 2022-{$year} Flexic-Systems
@author Hendrik Legge <[email protected]>
@version 2.0.0
TXT;
$config = Config\Factory::fromRuleSet(new Config\RuleSet\Php81($header), [
'final_public_method_for_abstract_class' => false,
'class_attributes_separation' => [
'elements' => [
'const' => 'one',
'method' => 'one',
'property' => 'one',
'trait_import' => 'none',
],
],
]);
$config->getFinder()
->exclude([
'.build/',
'vendor/',
])
->ignoreDotFiles(false)
->in(__DIR__)
->name('.php-cs-fixer.php')
->name('.php-cs-fixer.php.src');
$config->setCacheFile(__DIR__ . '/.build/php-cs-fixer/.php_cs.cache');
return $config;