From efe0691fb4d83e02d42eb66876385aed09fea1a6 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 26 Feb 2019 16:02:42 -0600 Subject: [PATCH] Update .gitignore do not commit the composer lock file. when forking and updating the repo, users run `composer update` to get the latest dependencies. this creates a `composer.lock` file that we don't want committed back to the package repo. similar to other Laravel packages that don't commit the lock file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 61ead866..8b7ef350 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /vendor +composer.lock