From c082411c992b3e182d30cc08133db5e14b6e1633 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 12 Dec 2025 16:14:29 +0100 Subject: update to 1.7-rc raise dependency on PHP 8.1 --- plugins/markdown_editor/composer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 plugins/markdown_editor/composer.json (limited to 'plugins/markdown_editor/composer.json') diff --git a/plugins/markdown_editor/composer.json b/plugins/markdown_editor/composer.json new file mode 100644 index 0000000..9759d13 --- /dev/null +++ b/plugins/markdown_editor/composer.json @@ -0,0 +1,22 @@ +{ + "name": "roundcube/markdown_editor", + "type": "roundcube-plugin", + "description": "An editor to compose emails in Markdown syntax, which gets converted into HTML before sending.", + "license": "GPL-3.0-or-later", + "version": "0.1", + "authors": [ + { + "name": "Pablo Zimdahl", + "homepage": "https://github.com/pabzm" + } + ], + "require": { + "php": ">=8.1.0", + "roundcube/plugin-installer": "~0.3.5" + }, + "autoload": { + "classmap": [ + "markdown_editor.php" + ] + } +} -- cgit