From cc41fc0d1ed25ddc94861ae91a0f22f48064bce7 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Wed, 22 Mar 2023 11:08:00 -0300 Subject: [PATCH] Improvements at documentation Add a note to prevent future developers to specify a wrong version of a package. Is necessary to write the full version number. https://github.com/nextcloud/3rdparty/pull/1304#discussion_r1094930891 Signed-off-by: Vitor Mattos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d405a86cc..6875a2bb2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Some 3rd party libraries that are necessary to run Nextcloud. ## Updating libraries manually 1. Make sure to use the latest version of composer: `composer self-update` -2. Edit composer.json and adjust the version of the library to the one to update to +2. Edit composer.json and adjust the version of the library to the one to update to. Pay attention to use the full version number (i.e. ^5.3.14). 3. Run `composer update thevendor/thelib` (replace accordingly) 4. Delete all installed dependencies with `rm -rf ./*/` 5. Run `composer install --no-dev`