From bde0c132169b3f7d6aa21b4dc2a0904acd005ca2 Mon Sep 17 00:00:00 2001 From: Stanislau Komar Date: Sat, 26 Nov 2022 00:23:36 +0400 Subject: [PATCH 1/2] v1.3 release - implements PluginConfigurationTrait --- src/Plugin/PluginConfigurationTrait.php | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/Plugin/PluginConfigurationTrait.php diff --git a/src/Plugin/PluginConfigurationTrait.php b/src/Plugin/PluginConfigurationTrait.php new file mode 100644 index 0000000..bef2492 --- /dev/null +++ b/src/Plugin/PluginConfigurationTrait.php @@ -0,0 +1,29 @@ +configuration = $pluginConfiguration; + } + + /** + * {@inheritDoc} + */ + public function configuration(): PluginConfigurationInterface + { + return $this->configuration; + } +} \ No newline at end of file From dec626d09c5c3fc4beb610eaaeadcc0d164323ae Mon Sep 17 00:00:00 2001 From: Stanislau Komar Date: Sat, 26 Nov 2022 00:24:34 +0400 Subject: [PATCH 2/2] v1.3 version up in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5d5648e..44d3736 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "micro/kernel-boot-configuration", "description": "Micro Framework: Kernel Boot loader - component to provide plugin configuration", "type": "library", - "version": "1.2", + "version": "1.3", "require": { "micro/kernel": "^1" },