From c4f01a94837449f6264bd8d09b35cf3bcf4c52be Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 19 May 2016 18:02:49 +0200 Subject: [PATCH] Exclude development stuff from repository autogenerated ZIP archives People that install this library via composer don't need the test/sample/doc 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 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitattributes b/.gitattributes index 4afe7924..77aef9ac 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ -.gitattributes export-ignore -.gitignore export-ignore -.travis.yml export-ignore +/doc export-ignore +/tests export-ignore +/.* export-ignore +/phpunit.xml.dist