From fc6a09b060ecf4ff9bdb87007d97491c29990269 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 8 Sep 2019 13:24:09 +0200 Subject: [PATCH] Don't export development-only files The files that are used for developing PHPUnit (but not for developing _with_ PHPUnit) should not be exported. This should reduce the size of the Composer packages that are installed with the `--prefer-dist` option (which is the default) considerably. --- .gitattributes | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 67631a2afbc..474740c9588 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,17 @@ +/.docker export-ignore +/.github export-ignore +/.psalm export-ignore /build export-ignore +/tests export-ignore /tools export-ignore +/.editorconfig export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/.php_cs.dist export-ignore +/.phpstorm.meta.php export-ignore +/.travis.yml export-ignore +/build.xml export-ignore +/phive.xml export-ignore +/phpunit.xml export-ignore *.php diff=php -