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
This commit is contained in:
Laurent Dinclaux
2026-02-10 08:39:00 +11:00
parent 52923e1278
commit 745b8cc38f

View File

@@ -1,38 +1,38 @@
{ {
"name": "boressoft/ident_switch", "name": "gecka/roundcube-ident_switch",
"type": "roundcube-plugin", "type": "roundcube-plugin",
"description": "This plugin allows users to switch between different accounts (including remote) in single Roundcube session.", "description": "This plugin allows users to switch between different accounts (including remote) in single Roundcube session.",
"homepage": "https://bitbucket.org/BoresExpress/ident_switch", "homepage": "https://github.com/Gecka-apps/ident_switch",
"keywords": ["identity", "imap", "mail", "switch"], "keywords": ["identity", "imap", "mail", "switch"],
"license": "GPL-3.0+", "license": "AGPL-3.0+",
"authors": [ "authors": [
{ {
"name": "Boris Gulay", "name": "Boris Gulay",
"email": "boris@gulay.name", "email": "boris@gulay.name",
"role": "Developer" "role": "Original Developer"
} }
], ],
"repositories": [ "repositories": [
{ {
"type": "composer", "type": "composer",
"url": "http://plugins.roundcube.net" "url": "https://plugins.roundcube.net"
} }
], ],
"require": { "require": {
"php": ">=5.3.0", "php": ">=8.1",
"roundcube/plugin-installer": ">=0.1.3", "roundcube/plugin-installer": ">=0.3.0",
"ext-ctype": "*" "ext-ctype": "*"
}, },
"conflict": { "conflict": {
"elm/identity_smtp": "*" "elm/identity_smtp": "*"
}, },
"support": { "support": {
"issues": "https://bitbucket.org/BoresExpress/ident_switch/issues" "issues": "https://github.com/Gecka-apps/ident_switch/issues"
}, },
"extra": { "extra": {
"roundcube": { "roundcube": {
"min-version": "1.3", "min-version": "1.6",
"sql-dir": "SQL" "sql-dir": "SQL"
} }
} }
} }