From a71e7d7d466cf0f8c464dc5c2413e57d452d536b Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Thu, 10 Sep 2026 22:33:52 -0400 Subject: [PATCH] chore: add .gitattributes to exclude development files from archives Add .gitattributes with export-ignore rules for development and CI files. This ensures that archives generated via git archive or GitHub do not include unnecessary files like tests and configurations. --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ec8849 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +/.github export-ignore +/tests export-ignore +.env.example.php export-ignore +.gitattributes export-ignore +.gitignore export-ignore +alchemy.yml export-ignore +composer.json export-ignore +phpstan-baseline.neon export-ignore +README.md export-ignore