From be24a69aa81002933bd2d8a5bb608bfe5bc53723 Mon Sep 17 00:00:00 2001 From: daniwe4 Date: Wed, 17 Jun 2020 14:08:28 +0200 Subject: [PATCH] composer: add plugin-folder to classmap This implements https://docu.ilias.de/goto_docu_wiki_wpage_6371_1357.html. To make the folder Customizing/global/plugins always available, an according file was added. Composer would complain with installations that do not use plugins otherwise. --- Customizing/global/plugins/.gitkeep | 0 composer.json | 1 + 2 files changed, 1 insertion(+) create mode 100644 Customizing/global/plugins/.gitkeep diff --git a/Customizing/global/plugins/.gitkeep b/Customizing/global/plugins/.gitkeep new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/composer.json b/composer.json index ca63ed8270ac..d672cd156fb0 100644 --- a/composer.json +++ b/composer.json @@ -75,6 +75,7 @@ "ILIAS\\" : "./src" }, "classmap": [ + "./Customizing/global/plugins", "./Services/", "./Modules", "./libs/ilias"