From: Jeremy Benoist Date: Wed, 20 Jan 2016 17:49:45 +0000 (+0100) Subject: Ignore composer.lock X-Git-Tag: 2.0.0-alpha.2~5^2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=173629a4002de5091f41cad4891cca6c8490a7ca Ignore composer.lock Having a big composer.lock on a final project can have side effect on incoming PR that add a new vendor. Mostly because conflict are too frequent. By ignoring composer.lock we ease the PR submission and rebase. BUT we need to be careful when we release a new version of wallabag. We should manually `git add -f composer.lock` to update it. Since composer.lock will no longer be commited I switch the `composer install` to a `composer up` in the travis configuration. --- diff --git a/.gitignore b/.gitignore index b6d6aa5d..02e921f8 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,6 @@ data/db/wallabag*.sqlite # Docker container logs and data docker/logs/ docker/data/ + +# To avoid crazy stuff on some PR, we must manually FORCE ADD IT on each new release +composer.lock diff --git a/build.xml b/build.xml index ab8cac29..3d82770f 100644 --- a/build.xml +++ b/build.xml @@ -11,7 +11,7 @@ - +