Skip to content

Commit

Permalink
build: add packaging_exclude.php for release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jackd248 committed Jul 25, 2024
1 parent b324ba3 commit 3a4b842
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions packaging_exclude.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,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',
],
];

0 comments on commit 3a4b842

Please sign in to comment.