From 91a7205dd8d492165a8fd85beb4a6c816c820f13 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Tue, 8 Dec 2020 19:29:59 -0500 Subject: [PATCH] Fix composer json attribute path to links override section --- framework/core/src/Extension/Extension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Extension/Extension.php b/framework/core/src/Extension/Extension.php index cdda23d67..da0fa0763 100644 --- a/framework/core/src/Extension/Extension.php +++ b/framework/core/src/Extension/Extension.php @@ -386,7 +386,7 @@ class Extension implements Arrayable ]; } - return array_merge($links, $this->composerJsonAttribute('flarum-extension.links') ?? []); + return array_merge($links, $this->composerJsonAttribute('extra.flarum-extension.links') ?? []); } /**