-
Notifications
You must be signed in to change notification settings - Fork 10
/
ExcludeFromPackaging.php
84 lines (81 loc) · 2.1 KB
/
ExcludeFromPackaging.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
77
78
79
80
81
82
83
84
<?php
// You can also add your custom configuration. Just add the path to your custom
// configuration file to the environment variable `TYPO3_EXCLUDE_FROM_PACKAGING`
// and make sure the file returns an array with the keys `directories` and `files`
// on root level.
// Note: The filter is case-insensitive. There is furthermore no need to define the
// filenames with / without a leading dot. This is taken into account automatically.
return [
'directories' => [
'.build',
'.ddev',
'.git',
'.github',
'.gitlab',
'.gitlab-ci',
'.idea',
'.phive',
'bin',
'build',
'public',
'tailor-version-artefact',
'tailor-version-upload',
'tests',
'tools',
'vendor',
],
'files' => [
'CODE_OF_CONDUCT.md',
'DS_Store',
'Dockerfile',
'ExtensionBuilder.json',
'Makefile',
'bower.json',
'codeception.yml',
'composer.lock',
'crowdin.yaml',
'docker-compose.yml',
'dynamicReturnTypeMeta.json',
'editorconfig',
'env',
'eslintignore',
'eslintrc.json',
'gitattributes',
'gitignore',
'gitlab-ci.yml',
'gitmodules',
'gitreview',
'package-lock.json',
'package.json',
'phive.xml',
'php-cs-fixer.dist.php',
'php-cs-fixer.php',
'php_cs',
'php_cs.php',
'phpcs.xml',
'phpcs.xml.dist',
'phplint.yml',
'phpstan-baseline.neon',
'phpstan.neon',
'phpstan.neon.dist',
'phpstorm.meta.php',
'phpunit.xml',
'phpunit.xml.dist',
'prettierrc.json',
'rector.php',
'scrutinizer.yml',
'styleci.yml',
'stylelint.config.js',
'stylelintrc',
'travis.yml',
'tslint.yaml',
'tslint.yml',
'typoscript-lint.yaml',
'typoscript-lint.yml',
'typoscriptlint.yaml',
'typoscriptlint.yml',
'webpack.config.js',
'webpack.mix.js',
'yarn.lock',
],
];