From af64577ae1cfcbd138144b8ee1c26cc1508b853f Mon Sep 17 00:00:00 2001 From: Benjamin Zikarsky Date: Fri, 2 Nov 2018 09:39:42 +0100 Subject: [PATCH] Update .gitignore - Remove platform-specific definitions (they should be handled by a user-global gitignore - Add `/vendor` - Add comments --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1d5044c..4224b4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ -.DS_Store -phpunit.xml -composer.lock +# Ignore custom phpunit config +/phpunit.xml + +# Ignore vendors and composer.lock (this is a library) +/composer.lock +/vendor