summaryrefslogtreecommitdiffstats
path: root/plugins/markdown_editor
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-12-12 16:14:29 +0100
committerRemi Collet <remi@php.net>2025-12-12 16:14:29 +0100
commitc082411c992b3e182d30cc08133db5e14b6e1633 (patch)
treed5036ff35df4ad5505eb6e26bd360d40f3a8e956 /plugins/markdown_editor
parentf0e787a353049cf93f99bb519e6b8d7c970e6554 (diff)
update to 1.7-rcHEADmaster
raise dependency on PHP 8.1
Diffstat (limited to 'plugins/markdown_editor')
-rw-r--r--plugins/markdown_editor/composer.json22
1 files changed, 22 insertions, 0 deletions
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"
+ ]
+ }
+}