From 2a52af7cc438ade95fb11de7b21f09e4fca0d9ff Mon Sep 17 00:00:00 2001 From: Lexidor Digital <31805625+lexidor@users.noreply.github.com> Date: Mon, 10 Feb 2020 23:16:40 +0100 Subject: [PATCH] Attempt to fix the composer install (#124) * Attempt to fix the composer install Composer isn't happy with installing HackTest, since that requires the HSL, which requires HackTest. There must be some way of aliasing this that Fred referred to, but it appears it was already doing that. Maybe we weren't specific enough? https://github.com/hhvm/hsl/pull/121#issuecomment-579368800 > Still failing; I think this is the compsoer.json branch configuration - for example, we have this in master: > > ``` > "extra": { > "branch-alias": { > "dev-master": "4.x-dev" > } > }, > ``` * Add more guidance for composer It needs to understand that this is the HSL HackTest is looking for. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 853519aa..73eb17e5 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,8 @@ "description": "The Hack Standard Library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "3.30.x-dev", + "dev-v3.30.x": "3.30.x-dev" } }, "license": "MIT",