From cdc9af84bdca8b3a6fb2e5ebb2906f3f460aee49 Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Fri, 18 Oct 2019 12:07:26 -0700 Subject: [PATCH] Add 4.x-dev branch alias for the v4 branch This allows you to install the package with a `4.x-dev` constraint, which can easily move to a more stable branch (e.g. master) once development of the new version has matured. https://getcomposer.org/doc/articles/aliases.md#branch-alias --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 77930155..8b1845f6 100644 --- a/composer.json +++ b/composer.json @@ -57,6 +57,9 @@ "providers": [ "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider" ] - } + }, + "branch-alias": { + "dev-v4": "4.x-dev" + } } }