-
Notifications
You must be signed in to change notification settings - Fork 2
/
packaging_exclude.php
46 lines (44 loc) · 1013 Bytes
/
packaging_exclude.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
<?php
declare(strict_types=1);
return [
'directories' => [
'.build',
'.ddev',
'.git',
'.github',
'bin',
'build',
'public',
'resources\\/private\\/frontend',
'resources\\/private\\/libs\\/build',
'tailor-version-upload',
'tests',
'var',
'vendor',
],
'files' => [
'DS_Store',
'CODE_OF_CONDUCT.md',
'codeception.yml',
'codecov.yml',
'CODEOWNERS',
'composer.lock',
'CONTRIBUTING.md',
'crowdin.yaml',
'dependency-checker.json',
'docker-compose.yml',
'editorconfig',
'editorconfig-lint.php',
'gitattributes',
'gitignore',
'packaging_exclude.php',
'php-cs-fixer.php',
'phpstan.php',
'phpstan-baseline.neon',
'phpunit.functional.xml',
'phpunit.unit.xml',
'rector.php',
'renovate.json',
'typoscript-lint.yml',
],
];