From 171312502cd9d943d4166b4ede0acb0b57625633 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Sun, 8 Jan 2023 15:28:01 +0100 Subject: [PATCH] Remove configuration files (#100) dependency checker got removed long ago. Add further files to export-ignore. This prevents those files from distribution when installed via composer or downloaded as zip. --- .gitattributes | 3 ++- Documentation/Changelog/2.1.0.rst | 27 +++++++++++++++++++++++++++ dependency-checker.json | 8 -------- 3 files changed, 29 insertions(+), 9 deletions(-) create mode 100644 Documentation/Changelog/2.1.0.rst delete mode 100644 dependency-checker.json diff --git a/.gitattributes b/.gitattributes index 629c47d..a9106f2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,8 +4,9 @@ Tests export-ignore .gitattributes export-ignore .gitignore export-ignore -dependency-checker.json export-ignore ecs.php export-ignore phpcs.xml.dist export-ignore +phpstan-baseline.neon export-ignore phpstan.neon export-ignore phpunit.xml.dist export-ignore +rector.php export-ignore diff --git a/Documentation/Changelog/2.1.0.rst b/Documentation/Changelog/2.1.0.rst new file mode 100644 index 0000000..978f8de --- /dev/null +++ b/Documentation/Changelog/2.1.0.rst @@ -0,0 +1,27 @@ +2.1.0 +===== + +Breaking +-------- + +Nothing + +Features +-------- + +Nothing + +Fixes +----- + +Nothing + +Tasks +----- + +* Remove further files from distribution to not clutter target systems. + +Deprecation +----------- + +Nothing diff --git a/dependency-checker.json b/dependency-checker.json deleted file mode 100644 index c1b550b..0000000 --- a/dependency-checker.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "scan-files": [ - "ext_*.php", - "Configuration/*php", - "Configuration/Backend/*.php", - "Configuration/TCA/*.php" - ] -}