You are here

function hosting_platform_composer_git_platform_deploy_strategies in Aegir Deploy 7.3

Implements hook_platform_deploy_strategies().

File

modules/platform_composer_git/hosting_platform_composer_git.module, line 45
Drupal hooks for the hosting_platform_composer_git module.

Code

function hosting_platform_composer_git_platform_deploy_strategies() {
  return [
    'platform_composer_git' => [
      'label' => t('Deploy a Composer project from a Git repository'),
      'required_fields' => [
        'field_composer_git_path',
      ],
    ],
  ];
}