From e3e6675d51c1aa27782664319c1ee8fc4ad93da0 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 20 May 2016 11:18:50 +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`, developers are happy, and so are end-users (they won't have unneeded stuff in production machines). --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..35af101 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +/.* export-ignore +/Src/Sunra/PhpSimple/simplehtmldom_1_5/app export-ignore +/Src/Sunra/PhpSimple/simplehtmldom_1_5/example export-ignore +/Src/Sunra/PhpSimple/simplehtmldom_1_5/manual export-ignore +/Src/Sunra/PhpSimple/simplehtmldom_1_5/testcase export-ignore