From 42719a4afe5f441997fe5806a6e1065d3eb401df Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 20 May 2016 11:32:00 +0200 Subject: [PATCH] Exclude development stuff from repository autogenerated 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 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..344814c --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +/.* export-ignore +/tests export-ignore +/phpunit.xml.dist export-ignore