-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPhpPreset.php
50 lines (46 loc) · 1.1 KB
/
PhpPreset.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
<?php
declare(strict_types=1);
namespace Stolt\LeanPackage\Presets;
use Stolt\LeanPackage\Preset;
final class PhpPreset implements Preset
{
public function getPresetGlob(): array
{
return [
'.*',
'*.lock',
'*.txt',
'*.rst',
'*.{md,MD}',
'*.{png,gif,jpeg,jpg,webp}',
'*.xml',
'*.yml',
'phpunit*',
'appveyor.yml',
'box.json',
'composer-dependency-analyser*',
'collision-detector*',
'captainhook.json',
'peck.json',
'infection*',
'phpstan*',
'sonar*',
'rector*',
'package*',
'pint.json',
'*debugbar.json',
'ecs*',
'*.dist.*',
'*.dist',
'{B,b}uild*',
'{D,d}oc*',
'{T,t}ool*',
'{T,t}est*',
'{S,s}pec*',
'{E,e}xample*',
'LICENSE',
'{{M,m}ake,{B,b}ox,{V,v}agrant,{P,p}hulp}file',
'RMT'
];
}
}