From a4a8b263d687d70562aaa613cd57c88cfba6ea06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 16 May 2018 09:08:20 +0200 Subject: [PATCH] Make sure github clones use https MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- build/composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"] } }