Release plugins as tar.gz because PharData is more common then ZipArchive

This commit is contained in:
djmaze 2021-02-10 09:50:20 +01:00
parent 756bf86640
commit b9b0a550d6
47 changed files with 214 additions and 159 deletions

View file

@ -6,6 +6,16 @@ use RainLoop\Plugins\Property;
class LdapIdentitiesPlugin extends AbstractPlugin
{
const
NAME = 'LDAP Identities',
VERSION = '2.0',
AUTHOR = 'FWest98',
URL = 'https://github.com/FWest98',
RELEASE = '2020-11-11',
REQUIRED = '2.1.0',
CATEGORY = 'Accounts',
DESCRIPTION = 'Plugin that adds functionality to import account identities from LDAP.';
public function __construct()
{
include_once __DIR__ . '/LdapIdentities.php';
@ -127,4 +137,4 @@ class LdapIdentitiesPlugin extends AbstractPlugin
->SetDescription("The base DN to search in for groups")
];
}
}
}