Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-05-16 10:08:20 +0300
committerJulius Härtl <jus@bitgrid.net>2018-05-16 10:37:05 +0300
commita4a8b263d687d70562aaa613cd57c88cfba6ea06 (patch)
treecd2b55f8febe0267c8ff17c77df908aee2768fca /build
parentcec5886a79862a615193b2823333e017e0c3acd4 (diff)
Make sure github clones use https
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'build')
-rw-r--r--build/composer.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/composer.json b/build/composer.json
index c051dae66..fd7e9fc73 100644
--- a/build/composer.json
+++ b/build/composer.json
@@ -3,11 +3,14 @@
"repositories": [
{
"type": "vcs",
- "url": "https://github.com/juliushaertl/reflection.git"
+ "url": "https://github.com/juliushaertl/reflection"
}
],
"require": {
"juliushaertl/phpdoc-to-rst": "dev-php7.0",
"phpdocumentor/reflection": "dev-php7.0"
+ },
+ "config": {
+ "github-protocols": ["https"]
}
}