forked from swow/swow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.dist.php
76 lines (73 loc) · 2.55 KB
/
.php-cs-fixer.dist.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* This file is part of Swow
*
* @link https://github.com/swow/swow
* @contact twosee <twosee@php.net>
*
* For the full copyright and license information,
* please view the LICENSE file that was distributed with this source code
*/
declare(strict_types=1);
use Swow\PhpCsFixer\Config;
return (new Config())
->setHeaderComment(
projectName: 'Swow',
projectLink: 'https://github.com/swow/swow',
contactName: 'twosee',
contactMail: 'twosee@php.net'
)->setFinder(
PhpCsFixer\Finder::create()
->name([
'*.php',
'*.phpt',
'*.inc',
])
->in([
__DIR__ . '/.github',
__DIR__ . '/.phan',
__DIR__ . '/benchmark',
__DIR__ . '/examples',
__DIR__ . '/ext',
__DIR__ . '/lib',
__DIR__ . '/tools',
])
->notName([
'Swow.php',
'run-tests*.php',
])
->filter(static function (Symfony\Component\Finder\SplFileInfo $fileInfo): bool {
$pathname = $fileInfo->getPathname();
if (empty($GLOBALS['exclude_file_path_list'])) {
foreach (
[
__DIR__ . '/ext/tests/swow_closure/use.inc',
__DIR__ . '/ext/tests/swow_closure/use.inc.inc',
__DIR__ . '/ext/tests/swow_closure/multiple_ns.inc',
] as $excludeFilePath
) {
$GLOBALS['exclude_file_path_list'][] = substr($excludeFilePath, strlen(__DIR__) + strlen('/'));
}
}
foreach ($GLOBALS['exclude_file_path_list'] as $excludeFilePath) {
if (strrpos($pathname, $excludeFilePath) !== false) {
return false;
}
}
if (str_contains($pathname, 'ext/build')) {
return false;
}
if (preg_match('/ext\/tests\/.+\.php$/', $pathname)) {
if (strrpos($pathname, 'ext/tests/include') !== false) {
return true;
}
return false;
}
return true;
})
->append([
__FILE__,
__DIR__ . '/ext/bin/swow-builder',
__DIR__ . '/lib/dontdie/dontdie',
])
);