You are here

hosting.feature.platform_composer.inc in Aegir Deploy 7.3

The hosting feature definition for hosting_platform_composer.

File

modules/platform_composer/hosting.feature.platform_composer.inc
View source
<?php

/**
 * @file The hosting feature definition for hosting_platform_composer.
 */

/**
 * Implements hook_hosting_feature().
 */
function hosting_platform_composer_hosting_feature() {
  $features['platform_composer'] = array(
    'title' => t('Composer Deploy via Packagist'),
    'description' => t('Deploy Composer-based platforms from Packagist repositories.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_platform_composer',
    'group' => 'optional',
  );
  return $features;
}