-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackaging_exclude.php
More file actions
68 lines (65 loc) · 1.59 KB
/
packaging_exclude.php
File metadata and controls
68 lines (65 loc) · 1.59 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
<?php
declare(strict_types=1);
/*
* This file is part of the "xima_typo3_content_planner" TYPO3 CMS extension.
*
* (c) 2024-2026 Konrad Michalik <hej@konradmichalik.dev>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
'directories' => [
'.build',
'.ddev',
'.git',
'.github',
'bin',
'build',
'node_modules',
'public',
'resources\\/private\\/frontend',
'resources\\/private\\/libs\\/build',
'tailor-version-artefact',
'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',
'editorconfig-lint.php',
'.env',
'gitattributes',
'gitignore',
'package.json',
'package-lock.json',
'packaging_exclude.php',
'php-cs-fixer.php',
'php-cs-fixer.xml',
'.php-cs-fixer.cache',
'phpstan.php',
'phpstan.xml',
'phpstan-baseline.neon',
'phpstan.neon',
'phpunit.functional.xml',
'phpunit.unit.xml',
'phpunit.xml',
'rector.php',
'renovate.json',
'SECURITY.md',
'typoscript-lint.yml',
'version-bumper.yaml',
],
];