-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexport-ignore.php
More file actions
75 lines (52 loc) · 1.18 KB
/
export-ignore.php
File metadata and controls
75 lines (52 loc) · 1.18 KB
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
<?php
declare(strict_types=1);
return [
// <<< dirs
'.github/',
'tests/',
'Tests/',
'docs/',
'tools/', // often used with bamarni/composer-bin-plugin
// dirs >>>
'dist-size-status.json', // used for badge "dist size optimized"
'.gitignore',
'.editorconfig',
'CODE_OF_CONDUCT.md',
'CONTRIBUTING.md',
// we won't use CHANGELOG.md here
'phpcs.xml',
'phpcs.xml.dist',
'.php-cs-fixer.dist.php',
'phpmd.xml.dist',
'phpstan-baseline.neon',
'phpstan.neon.dist',
'phpstan.dist.neon',
'phpstan.neon',
'rector.php',
'phpunit.xml.dist',
'phpunit.xml',
'psalm.xml',
'.psalm/',
'psalm-baseline.xml',
'composer-require-checker.json',
'composer-unused.php',
'infection.json5',
'infection.json',
'infection.json5.dist',
'infection.json.dist',
'Taskfile.yml',
'Taskfile.yaml',
'Makefile',
'bootstrap.php',
'grumphp.yml',
'composer.lock',
'ecs.php',
'Dockerfile',
'composer-dependency-analyser.php',
'.gitlab-ci.yml',
'.travis.yml',
'.styleci.yml',
'UPGRADE-*.md',
'docker-compose.yaml',
'docker-compose.yml',
];