From 506751d3fecec8c0f4141f3cd69d06df24e03809 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 19 May 2016 17:34:45 +0200 Subject: [PATCH] Exclude some dirs and files from repository auto-generated ZIP archives People that install this library via composer don't need the test stuff, they just need the library itself. This PR removes the development directories and files from the repository auto-generated ZIP archives. Since these development files/directories will still be available via `git clone`, Travis is happy, developers are happy, and so are end-users (they won't have unneeded stuff in production machines). --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9671740 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/Tests export-ignore +/documentation export-ignore +/.* export-ignore +/phpunit.xml.dist