-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #843 from nextcloud/readme-update-lib-manually
Instructions for updating libraries manually
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
3rdparty | ||
======== | ||
# 3rdparty | ||
|
||
Some 3rd party libraries that are necessary to run Nextcloud. | ||
|
||
[![Dependency Status](https://www.versioneye.com/user/projects/576c043fcd6d510048bab256/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/576c043fcd6d510048bab256) | ||
|
||
## Updating libraries manually | ||
|
||
1. Make sure to use the latest version of composer.phar | ||
2. Edit composer.json and adjust the version of the library to the one to update to | ||
3. Run `composer update thevendor/thelib` (replace accordingly) | ||
4. Delete all installed dependencies with `rm -rf ./*/` | ||
5. Run `composer install --no-dev` | ||
6. Run `dump-autoload` | ||
7. Commit all changes onto a new branch | ||
8. You might need the following command for pushing if used as submodule: `git push git@github.com:nextcloud/3rdparty.git branchname` |