Files
roundcubemail/plugins/autologout/composer.json
Michael Voříšek 1e360999b2 Use composer autoloader for bundled plugins testing (#9412)
* use fixed "roundcube/plugin-installer"

* Use composer autoloader for plugins testing

* cherrypick remaining from 9241 related with testing

* minor legacy autoload improvements
2024-04-11 18:28:46 +02:00

23 lines
539 B
JSON

{
"name": "roundcube/autologout",
"type": "roundcube-plugin",
"description": "Plugin to auto log out users with a POST request sent from an external site.",
"license": "GPL-3.0-or-later",
"version": "1.0",
"authors": [
{
"name": "Cover Tower LLC",
"email": "contact@covertower.com"
}
],
"require": {
"php": ">=7.3.0",
"roundcube/plugin-installer": "~0.3.5"
},
"autoload": {
"classmap": [
"autologout.php"
]
}
}