-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.php-cs-fixer.dist.php
More file actions
37 lines (33 loc) · 1003 Bytes
/
.php-cs-fixer.dist.php
File metadata and controls
37 lines (33 loc) · 1003 Bytes
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
<?php
/*
* This file is part of the spiriitlabs/commit-history package.
* Copyright (c) SpiriitLabs <https://www.spiriit.com/>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (!file_exists(__DIR__.'/src') || !file_exists(__DIR__.'/tests')) {
exit(0);
}
$finder = (new PhpCsFixer\Finder())
->in([__DIR__.'/src', __DIR__.'/tests'])
->exclude([
'tmp',
])
;
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'header_comment' => [
'header' => <<<EOF
This file is part of the spiriitlabs/commit-history package.
Copyright (c) SpiriitLabs <https://www.spiriit.com/>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF,
],
'no_superfluous_phpdoc_tags' => false,
])
->setRiskyAllowed(true)
->setFinder($finder)
;