From 34c2d2783782d37ef9fb32b810e7b8a03a95e8a7 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 14 Jul 2024 23:00:13 +0200 Subject: [PATCH] define 2.0.x-dev as an alias for the master branch Defining the branch alias allows projects to test recent additions before they are part of a tagged release. --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index e49f1c61..61033b4b 100644 --- a/composer.json +++ b/composer.json @@ -57,6 +57,11 @@ "phpunit/phpunit": "^7|^8|^9", "vimeo/psalm": "^4|^5" }, + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, "scripts": { "test": "phpunit" },