summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/package2composer.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/package2composer.sh b/bin/package2composer.sh
index aa9dffb50..c615a177f 100755
--- a/bin/package2composer.sh
+++ b/bin/package2composer.sh
@@ -39,6 +39,7 @@ $data = array(
'description' => trim(strval($package->description), '- ') ? trim(strval($package->description)) : trim(strval($package->summary)),
'homepage' => strval($package->uri),
'license' => 'GPLv3+',
+ 'version' => strval($package->version->release),
'authors' => array(),
'repositories' => array(
array('type' => 'composer', 'url' => 'http://plugins.roundcube.net'),
@@ -55,6 +56,9 @@ if ($package->license) {
if ($package->lead) {
foreach ($package->lead as $lead) {
+ if (strval($lead->active) == 'no') {
+ continue;
+ }
$data['authors'][] = array(
'name' => strval($lead->name),
'email' => strval($lead->email),