From f829a2f1fb597c2daf658f6108469c62183a30c1 Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Mon, 7 Dec 2020 10:39:25 +0000 Subject: [PATCH] Add .gitattributes to clean up release zip Various artifacts such as tests and build config are not needed in the release zip file. This removes them. Fixes #23. --- .gitattributes | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1c51a31 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,8 @@ +*.php text eol=lf +/.gitattributes export-ignore +/.github/ export-ignore +/.gitignore export-ignore +/composer.lock export-ignore +/phpcs.xml.dist export-ignore +/phpunit.xml.dist export-ignore +/tests/ export-ignore