You are here

hosting.feature.platform_composer_git.inc in Aegir Deploy 7.3

The hosting feature definition for hosting_platform_composer_git.

File

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

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

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