From 745b8cc38ff5e70dae8335b1773ce1faf7f3b42b Mon Sep 17 00:00:00 2001 From: Laurent Dinclaux Date: Tue, 10 Feb 2026 08:39:00 +1100 Subject: [PATCH] Fork: update composer.json for new package - Rename package to gecka/roundcube-ident_switch - Change license from GPL-3.0+ to AGPL-3.0+ - Bump PHP requirement to >= 8.1 - Bump roundcube/plugin-installer to >= 0.3.0 - Set Roundcube min-version to 1.6 - Update homepage and support URLs to GitHub - Update composer repository URL to HTTPS --- composer.json | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/composer.json b/composer.json index dbee182..37a1d16 100644 --- a/composer.json +++ b/composer.json @@ -1,38 +1,38 @@ { - "name": "boressoft/ident_switch", + "name": "gecka/roundcube-ident_switch", "type": "roundcube-plugin", "description": "This plugin allows users to switch between different accounts (including remote) in single Roundcube session.", - "homepage": "https://bitbucket.org/BoresExpress/ident_switch", - "keywords": ["identity", "imap", "mail", "switch"], - "license": "GPL-3.0+", + "homepage": "https://github.com/Gecka-apps/ident_switch", + "keywords": ["identity", "imap", "mail", "switch"], + "license": "AGPL-3.0+", "authors": [ { "name": "Boris Gulay", "email": "boris@gulay.name", - "role": "Developer" + "role": "Original Developer" } ], "repositories": [ { "type": "composer", - "url": "http://plugins.roundcube.net" + "url": "https://plugins.roundcube.net" } ], "require": { - "php": ">=5.3.0", - "roundcube/plugin-installer": ">=0.1.3", - "ext-ctype": "*" + "php": ">=8.1", + "roundcube/plugin-installer": ">=0.3.0", + "ext-ctype": "*" }, - "conflict": { - "elm/identity_smtp": "*" - }, - "support": { - "issues": "https://bitbucket.org/BoresExpress/ident_switch/issues" - }, - "extra": { - "roundcube": { - "min-version": "1.3", - "sql-dir": "SQL" - } - } + "conflict": { + "elm/identity_smtp": "*" + }, + "support": { + "issues": "https://github.com/Gecka-apps/ident_switch/issues" + }, + "extra": { + "roundcube": { + "min-version": "1.6", + "sql-dir": "SQL" + } + } }